mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
Bugfix for request by handle (removed unnecessary encoding)
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user