diff --git a/CHANGELOG.md b/CHANGELOG.md index 99637af73b..c46c6bfd62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - Fixed Torrent Search path option not being saved ([#5736](https://github.com/pymedusa/Medusa/pull/5736)) - Fixed adding anime release group when adding show ([#5749](https://github.com/pymedusa/Medusa/pull/5749)) - Fixed Pushover debug log causing BraceException ([#5759](https://github.com/pymedusa/Medusa/pull/5759)) +- Fixed torrent method Downloadstation not selected after restart ([#5761](https://github.com/pymedusa/Medusa/pull/5761)) ----- diff --git a/medusa/__main__.py b/medusa/__main__.py index b055deb36b..2ec7e5b04f 100755 --- a/medusa/__main__.py +++ b/medusa/__main__.py @@ -578,7 +578,7 @@ def initialize(self, console_logging=True): app.NZB_METHOD = check_setting_str(app.CFG, 'General', 'nzb_method', 'blackhole', valid_values=('blackhole', 'sabnzbd', 'nzbget')) app.TORRENT_METHOD = check_setting_str(app.CFG, 'General', 'torrent_method', 'blackhole', valid_values=('blackhole', 'utorrent', 'transmission', 'deluge', - 'deluged', 'download_station', 'rtorrent', 'qbittorrent', 'mlnet')) + 'deluged', 'downloadstation', 'rtorrent', 'qbittorrent', 'mlnet')) app.DOWNLOAD_PROPERS = bool(check_setting_int(app.CFG, 'General', 'download_propers', 1)) app.PROPERS_SEARCH_DAYS = max(2, min(8, check_setting_int(app.CFG, 'General', 'propers_search_days', 2))) diff --git a/medusa/server/web/manage/handler.py b/medusa/server/web/manage/handler.py index 1cb4a23b21..0e664ff1dc 100644 --- a/medusa/server/web/manage/handler.py +++ b/medusa/server/web/manage/handler.py @@ -791,7 +791,7 @@ def manageTorrents(self): if app.TORRENT_METHOD == 'utorrent': webui_url = '/'.join(s.strip('/') for s in (webui_url, 'gui/')) - if app.TORRENT_METHOD == 'download_station': + if app.TORRENT_METHOD == 'downloadstation': if helpers.check_url('{url}download/'.format(url=webui_url)): webui_url += 'download/' else: