mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 11:32:20 -05:00
Fixes changing root dirs on the mass edit page
This commit is contained in:
parent
ba4bb7ca54
commit
1cf3237b9e
@ -36,6 +36,7 @@
|
|||||||
* Add subtitle information to the cmd show and cmd shows api output
|
* 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
|
* 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
|
* 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]
|
[develop changelog]
|
||||||
* Improve display of progress bars in the Downloads columns of the show list page
|
* 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)
|
anime = config.checkbox_to_value(anime)
|
||||||
subtitles = config.checkbox_to_value(subtitles)
|
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 we changed the language then kick off an update
|
||||||
if indexer_lang == showObj.lang:
|
if indexer_lang == showObj.lang:
|
||||||
|
Loading…
Reference in New Issue
Block a user