Skip to content

Commit

Permalink
fix clients.torrents.path path type (#5736)
Browse files Browse the repository at this point in the history
* fix clients.torrents.path path type

Signed-off-by: Alexis Tyler <xo@wvvw.me>

* Update CHANGELOG.md
  • Loading branch information
OmgImAlexis authored and medariox committed Nov 19, 2018
1 parent 1900b60 commit 34142a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#### Improvements

#### Fixes
- Fixed Torrent Search path option not being saved ([#5736](https://github.com/pymedusa/Medusa/pull/5736))

-----

Expand Down
2 changes: 1 addition & 1 deletion medusa/server/api/v2/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down

0 comments on commit 34142a8

Please sign in to comment.