mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 09:43:07 -07:00
Encode torrent name before passing in URL
This commit is contained in:
parent
26a9af850b
commit
06edabb9be
2 changed files with 2 additions and 2 deletions
|
@ -485,7 +485,7 @@ var initializeWindows = function() {
|
|||
id: 'renamePage',
|
||||
title: "QBT_TR(Rename)QBT_TR[CONTEXT=TransferListWidget]",
|
||||
loadMethod: 'iframe',
|
||||
contentURL: 'rename.html?hash=' + hashes[0] + '&name=' + row.full_data.name,
|
||||
contentURL: 'rename.html?hash=' + hash + '&name=' + encodeURIComponent(row.full_data.name),
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
maximizable: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue