Skip to content

Commit

Permalink
Fix unable to add multiple peers in WebUI
Browse files Browse the repository at this point in the history
Wrong delimiter was used.
  • Loading branch information
seprode authored and sledgehammer999 committed Apr 22, 2020
1 parent e5bf83a commit c5a7aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/www/private/addpeers.html
Original file line number Diff line number Diff line change
Expand Up @@ -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]");
Expand Down

0 comments on commit c5a7aa7

Please sign in to comment.