mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-08-06 13:26:38 +02:00
Fixes undecoded label bug.
This commit is contained in:
@@ -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;
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user