Fix adding torrents when not showing the add torrent dialog in Windows
This commit is contained in:
@ -5,8 +5,9 @@
|
||||
* Fix torrent name being blank when renaming root folder to /
|
||||
|
||||
==== GtkUI ====
|
||||
* replace & with & in the details tab to ensure there are no markup errors
|
||||
* Replace & with & in the details tab to ensure there are no markup errors
|
||||
* Consider 0 unlimited when displaying limits in the statusbar
|
||||
* Fix adding torrents when not showing the add torrent dialog in Windows
|
||||
|
||||
==== Web ====
|
||||
* Fix #1046 changing auto managed via the details tab
|
||||
|
@ -163,4 +163,4 @@ def process_args(args):
|
||||
component.get("AddTorrentDialog").show(config["focus_add_dialog"])
|
||||
else:
|
||||
path = os.path.abspath(arg)
|
||||
client.core.add_torrent_file(os.path.split(path)[-1], base64.encodestring(open(path).read()), None)
|
||||
client.core.add_torrent_file(os.path.split(path)[-1], base64.encodestring(open(path, "rb").read()), None)
|
||||
|
Reference in New Issue
Block a user