Fix unable to add multiple peers in WebUI

Wrong delimiter was used.
This commit is contained in:
Sepro 2020-04-08 03:22:19 +02:00 committed by sledgehammer999
commit c5a7aa7668
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

View file

@ -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]");