mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 12:59:56 -07:00
Merge pull request #10838 from Piccirello/webui-rename-char-encoding
Fix WebUI encoding of special characters
This commit is contained in:
commit
5e76f7d699
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
|||
var name = new URI().getData('name');
|
||||
// set text field to current value
|
||||
if (name)
|
||||
$('rename').value = escapeHtml(decodeURIComponent(name));
|
||||
$('rename').value = decodeURIComponent(name);
|
||||
|
||||
$('rename').focus();
|
||||
$('renameButton').addEvent('click', function(e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue