From fe26e60ecfd58c96f4614fa3cca0ae3651634ffe Mon Sep 17 00:00:00 2001 From: Alexis Tyler Date: Sun, 18 Nov 2018 18:37:51 +1030 Subject: [PATCH 1/2] fix clients.torrents.path path type Signed-off-by: Alexis Tyler --- medusa/server/api/v2/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/medusa/server/api/v2/config.py b/medusa/server/api/v2/config.py index 959f726bfa..a89e97056a 100644 --- a/medusa/server/api/v2/config.py +++ b/medusa/server/api/v2/config.py @@ -81,7 +81,7 @@ class ConfigHandler(BaseRequestHandler): 'clients.torrents.labelAnime': StringField(app, 'TORRENT_LABEL_ANIME'), 'clients.torrents.method': StringField(app, 'TORRENT_METHOD'), 'clients.torrents.password': StringField(app, 'TORRENT_PASSWORD'), - 'clients.torrents.path': BooleanField(app, 'TORRENT_PATH'), + 'clients.torrents.path': StringField(app, 'TORRENT_PATH'), 'clients.torrents.paused': BooleanField(app, 'TORRENT_PAUSED'), 'clients.torrents.rpcurl': StringField(app, 'TORRENT_RPCURL'), 'clients.torrents.seedLocation': StringField(app, 'TORRENT_SEED_LOCATION'), From a9cd58f7bfbe6d83a124ca2a638eac8b05648f7d Mon Sep 17 00:00:00 2001 From: Dario Date: Mon, 19 Nov 2018 11:47:13 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1acac894..c019747c5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ #### Improvements #### Fixes +- Fixed Torrent Search path option not being saved ([#5736](https://github.com/pymedusa/Medusa/pull/5736)) -----