mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-15 14:05:57 +00:00
Fix adding torrents by URL.
This commit is contained in:
parent
67c7f9a80e
commit
d690e44194
@ -215,8 +215,12 @@ class Core(
|
||||
"""
|
||||
if save_path == "":
|
||||
save_path = None
|
||||
|
||||
torrent_id = self.torrents.add(filename, filedump=filedump.data,
|
||||
|
||||
# Make sure we are sending a string to add()
|
||||
if not isinstance(filedump, str):
|
||||
filedump = filedump.data
|
||||
|
||||
torrent_id = self.torrents.add(filename, filedump=filedump,
|
||||
save_path=save_path)
|
||||
|
||||
# Run the plugin hooks for 'post_torrent_add'
|
||||
|
@ -34,7 +34,7 @@
|
||||
import sys
|
||||
import deluge.SimpleXMLRPCServer as SimpleXMLRPCServer
|
||||
from SocketServer import ThreadingMixIn
|
||||
import xmlrpclib as xmlrpclib
|
||||
import deluge.xmlrpclib as xmlrpclib
|
||||
import threading
|
||||
|
||||
from deluge.log import LOG as log
|
||||
|
Loading…
x
Reference in New Issue
Block a user