mirror of
https://github.com/diced/zipline.git
synced 2025-04-11 23:31:17 -05:00
fix: unnecessary escape
This commit is contained in:
parent
afbda50a21
commit
e58c069ec3
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ export function parseString(str: string, value: ParseValue) {
|
|||
}
|
||||
|
||||
if (['originalName', 'name'].includes(matches.groups.prop)) {
|
||||
const decoded = decodeURIComponent(escape(getV[matches.groups.prop as keyof ParseValue['file']]));
|
||||
const decoded = decodeURIComponent(getV[matches.groups.prop as keyof ParseValue['file']]);
|
||||
str = replaceCharsFromString(
|
||||
str,
|
||||
modifier(
|
||||
|
|
Loading…
Add table
Reference in a new issue