mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-17 07:38:42 +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)
|
vars = web.input(data_also = None, torrent_also = None)
|
||||||
data_also = bool(vars.data_also)
|
data_also = bool(vars.data_also)
|
||||||
torrent_also = bool(vars.torrent_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()
|
do_redirect()
|
||||||
|
|
||||||
class torrent_queue_up:
|
class torrent_queue_up:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue