mirror of
https://github.com/lrsjng/h5ai
synced 2025-12-23 17:22:51 +01:00
Fixes undecoded label bug.
This commit is contained in:
parent
7e6549faee
commit
8fea7bfb74
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ modulejs.define('model/entry', ['_', 'core/types', 'core/ajax'], function (_, ty
|
|||
sequence = sequence.slice(0, -1);
|
||||
}
|
||||
try {
|
||||
sequence = decodeURI(sequence);
|
||||
sequence = decodeURIComponent(sequence);
|
||||
} catch (err) {}
|
||||
return sequence;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue