mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
WebUI: disallow unnecessary quotes in property name
Those two forms are the same and from now on we enforce to one style. PR #22051.
This commit is contained in:
@@ -154,8 +154,8 @@ window.qBittorrent.PropPeers ??= (() => {
|
||||
fetch("api/v2/transfer/banPeers", {
|
||||
method: "POST",
|
||||
body: new URLSearchParams({
|
||||
"hash": torrentsTable.getCurrentTorrentID(),
|
||||
"peers": selectedPeers.join("|")
|
||||
hash: torrentsTable.getCurrentTorrentID(),
|
||||
peers: selectedPeers.join("|")
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user