fix safedecodeURI

This commit is contained in:
Kuba Orlik 2021-11-26 20:59:24 +01:00
parent 928effa1ad
commit 02a30a4831
1 changed files with 1 additions and 1 deletions

View File

@ -245,6 +245,6 @@ export function safeDecodeURIComponent(s: string) {
try {
return decodeURIComponent(s);
} catch (e) {
return e;
return s;
}
}