Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
url meta syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamesuta committed Dec 2, 2016
1 parent 3762a19 commit 307f064
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public String getMetaString() {
final StringBuilder stb = new StringBuilder();
for (final URI uri : this.uristack) {
final String frag = uri.getFragment();
final String[] metas = StringUtils.substringsBetween(frag, "@[", "]");
final String[] metas = StringUtils.substringsBetween(frag, "(=", "=)");
if (metas!=null)
for (final String meta : metas)
stb.append(meta);
Expand Down

0 comments on commit 307f064

Please sign in to comment.