Private GIT

Skip to content
Snippets Groups Projects
Commit d0645805 authored by miigotu's avatar miigotu
Browse files

Merge pull request #3007 from SiCKRAGETV/redo-3004

Do not make torrent labels lower case for rtorrent client
parents 130c9508 709ee520
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ class rTorrentAPI(GenericClient):
if result.show.is_anime:
label = sickbeard.TORRENT_LABEL_ANIME
if label:
torrent.set_custom(1, label.lower())
torrent.set_custom(1, label)
if sickbeard.TORRENT_PATH:
torrent.set_directory(sickbeard.TORRENT_PATH)
......@@ -112,7 +112,7 @@ class rTorrentAPI(GenericClient):
if result.show.is_anime:
label = sickbeard.TORRENT_LABEL_ANIME
if label:
torrent.set_custom(1, label.lower())
torrent.set_custom(1, label)
if sickbeard.TORRENT_PATH:
torrent.set_directory(sickbeard.TORRENT_PATH)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment