mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-06 05:01:25 -07:00
WebUI: Fix removing tracker URL with '|' character
Closes #19074. PR #21346.
This commit is contained in:
parent
9ac14cdf9f
commit
c3c7f28bad
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ window.qBittorrent.PropTrackers = (function() {
|
||||||
method: "post",
|
method: "post",
|
||||||
data: {
|
data: {
|
||||||
hash: current_hash,
|
hash: current_hash,
|
||||||
urls: selectedTrackers.join("|")
|
urls: selectedTrackers.map(encodeURIComponent).join("|")
|
||||||
},
|
},
|
||||||
onSuccess: function() {
|
onSuccess: function() {
|
||||||
updateData();
|
updateData();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue