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