diff --git a/core/plugins/downloaders/torrent/configuration.py b/core/plugins/downloaders/torrent/configuration.py index 3104518b..9344ba7f 100644 --- a/core/plugins/downloaders/torrent/configuration.py +++ b/core/plugins/downloaders/torrent/configuration.py @@ -14,7 +14,7 @@ def configure_torrents(config): core.TORRENT_CLIENT_AGENT = torrent_config['clientAgent'] # utorrent | deluge | transmission | rtorrent | vuze | qbittorrent | synods | other core.OUTPUT_DIRECTORY = torrent_config['outputDirectory'] # /abs/path/to/complete/ core.TORRENT_DEFAULT_DIRECTORY = torrent_config['default_downloadDirectory'] - core.TORRENT_NO_MANUAL = int(torrent_config['no_manuall']) + core.TORRENT_NO_MANUAL = int(torrent_config['no_manual'], 0) configure_torrent_linking(torrent_config) configure_flattening(torrent_config)