Skip to content
This repository has been archived by the owner on Jul 2, 2018. It is now read-only.

Commit

Permalink
Fix for #390 (wrong regex group was used)
Browse files Browse the repository at this point in the history
  • Loading branch information
Natasa Bulatovic committed Jan 22, 2016
1 parent e6de57a commit 41f8ad9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static URI extractURI(String url) {

m = findProfileId.matcher(url);
if (m.find() ) {
return ObjectHelper.getURI(MetadataProfile.class, UrlHelper.decode(m.group(1)));
return ObjectHelper.getURI(MetadataProfile.class, UrlHelper.decode(m.group(2)));
}

return null;
Expand Down

0 comments on commit 41f8ad9

Please sign in to comment.