Browse Source

Merge pull request #12449 from SeproDE/fix-addMultiplePeers

Fix add multiple peers from webui
adaptive-webui-19844
Mike Tzou 5 years ago committed by GitHub
parent
commit
d8356deefa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/webui/www/private/addpeers.html

2
src/webui/www/private/addpeers.html

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

Loading…
Cancel
Save