1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 11:02:21 -05:00

Fixes changing root dirs on the mass edit page

This commit is contained in:
Adam 2014-11-04 18:39:43 +08:00
parent ba4bb7ca54
commit 1cf3237b9e
2 changed files with 5 additions and 1 deletions

View File

@ -36,6 +36,7 @@
* Add subtitle information to the cmd show and cmd shows api output
* Removed requirement for http login for API when an API key is provided
* Change API now uses Timezone setting at General Config/Interface/User Interface/ at relevant endpoints
* Fixes changing root dirs on the mass edit page
[develop changelog]
* Improve display of progress bars in the Downloads columns of the show list page

View File

@ -3877,7 +3877,10 @@ class Home(MainHandler):
anime = config.checkbox_to_value(anime)
subtitles = config.checkbox_to_value(subtitles)
indexer_lang = indexerLang
if indexerLang and indexerLang in sickbeard.indexerApi(showObj.indexer).indexer().config['valid_languages']:
indexer_lang = indexerLang
else:
indexer_lang = showObj.lang
# if we changed the language then kick off an update
if indexer_lang == showObj.lang: