1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-01-08 12:28:05 -05:00

Add more info to api command show

This commit is contained in:
John 2014-11-28 02:23:50 +01:00
parent 3a16e62962
commit 48530fbd1a

View File

@ -1951,6 +1951,20 @@ class CMD_Show(ApiCall):
showDict["sports"] = showObj.sports showDict["sports"] = showObj.sports
showDict["anime"] = showObj.anime showDict["anime"] = showObj.anime
showDict["airs"] = str(showObj.airs).replace('am', ' AM').replace('pm', ' PM').replace(' ', ' ') showDict["airs"] = str(showObj.airs).replace('am', ' AM').replace('pm', ' PM').replace(' ', ' ')
showDict["dvdorder"] = showObj.dvdorder
if showObj.rls_require_words:
showDict["rls_require_words"] = showObj.rls_require_words.split(", ")
else:
showDict["rls_require_words"] = []
if showObj.rls_ignore_words:
showDict["rls_ignore_words"] = showObj.rls_ignore_words.split(", ")
else:
showDict["rls_ignore_words"] = []
showDict["scene"] = showObj.scene
showDict["archive_firstmatch"] = showObj.archive_firstmatch
showDict["indexerid"] = showObj.indexerid showDict["indexerid"] = showObj.indexerid
showDict["tvdbid"] = helpers.mapIndexersToShow(showObj)[1] showDict["tvdbid"] = helpers.mapIndexersToShow(showObj)[1]