mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 11:02:21 -05:00
Merge pull request #98 from adam111316/feature/FixMassRootDirChange
Fixes changing root dirs on the mass edit page
This commit is contained in:
commit
12f616d60d
@ -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
|
||||
|
@ -3877,7 +3877,10 @@ class Home(MainHandler):
|
||||
anime = config.checkbox_to_value(anime)
|
||||
subtitles = config.checkbox_to_value(subtitles)
|
||||
|
||||
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:
|
||||
|
Loading…
Reference in New Issue
Block a user