Skip to content
Snippets Groups Projects
Commit 85d179e2 authored by Michael W Spalti's avatar Michael W Spalti
Browse files

Bugfix for request by handle (removed unnecessary encoding)

parent 2d49f3e7
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ export class LookupGuard implements CanActivate { ...@@ -34,7 +34,7 @@ export class LookupGuard implements CanActivate {
type = IdentifierType.HANDLE; type = IdentifierType.HANDLE;
const prefix = route.params.idType; const prefix = route.params.idType;
const handleId = route.params.id; const handleId = route.params.id;
id = `${prefix}%2F${handleId}`; id = `${prefix}/${handleId}`;
} else if (route.params.idType === IdentifierType.HANDLE) { } else if (route.params.idType === IdentifierType.HANDLE) {
type = IdentifierType.HANDLE; type = IdentifierType.HANDLE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment