mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 06:01:33 -06:00
Fix unable to add multiple peers in WebUI
Wrong delimiter was used.
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
method: 'post',
|
||||
data: {
|
||||
hashes: hash,
|
||||
peers: peers.join(';')
|
||||
peers: peers.join('|')
|
||||
},
|
||||
onFailure: function() {
|
||||
alert("QBT_TR(Unable to add peers. Please ensure you are adhering to the IP:port format.)QBT_TR[CONTEXT=HttpServer]");
|
||||
|
||||
Reference in New Issue
Block a user