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)) ----- 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'),