mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-25 20:44:53 -04: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);
|
sequence = sequence.slice(0, -1);
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
sequence = decodeURI(sequence);
|
sequence = decodeURIComponent(sequence);
|
||||||
} catch (err) {}
|
} catch (err) {}
|
||||||
return sequence;
|
return sequence;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue