mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-04 06:32:29 -06:00
WebUI: Properly decode strings
This commit is contained in:
committed by
Vladimir Golovnev (Glassez)
parent
529dd6e3a8
commit
59f0961594
@@ -30,7 +30,7 @@
|
||||
}).activate();
|
||||
window.addEvent('domready', () => {
|
||||
$('feedURL').focus();
|
||||
const path = decodeURIComponent(new URI().getData('path'));
|
||||
const path = new URI().getData('path');
|
||||
$('submitButton').addEvent('click', (e) => {
|
||||
new Event(e).stop();
|
||||
// check field
|
||||
|
||||
Reference in New Issue
Block a user