mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 12:04:51 +00:00
Fix removing torrents options in WebUI. They were reversed.
This commit is contained in:
parent
e231621e12
commit
50e6b343c3
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ class torrent_delete:
|
|||
vars = web.input(data_also = None, torrent_also = None)
|
||||
data_also = bool(vars.data_also)
|
||||
torrent_also = bool(vars.torrent_also)
|
||||
ws.proxy.remove_torrent(torrent_ids, data_also, torrent_also)
|
||||
ws.proxy.remove_torrent(torrent_ids, torrent_also, data_also)
|
||||
do_redirect()
|
||||
|
||||
class torrent_queue_up:
|
||||
|
|
Loading…
Add table
Reference in a new issue