mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 06:45:05 -05:00
Merge pull request #995 from Hellowlol/apishowstats
added snatched episodes to shows.stats api command
This commit is contained in:
commit
f10030ec65
@ -2861,6 +2861,10 @@ class CMD_ShowsStats(ApiCall):
|
||||
[str(show) for show in
|
||||
Quality.DOWNLOADED + [ARCHIVED]]) + ") AND season != 0 and episode != 0 AND airdate <= " + today + "")[0][
|
||||
0]
|
||||
stats["ep_snatched"] = myDB.select("SELECT COUNT(*) FROM tv_episodes WHERE status IN (" + ",".join(
|
||||
[str(show) for show in
|
||||
Quality.SNATCHED + Quality.SNATCHED_PROPER]) + ") AND season != 0 and episode != 0 AND airdate <= " + today + "")[0][
|
||||
0]
|
||||
stats["ep_total"] = myDB.select(
|
||||
"SELECT COUNT(*) FROM tv_episodes WHERE season != 0 AND episode != 0 AND (airdate != 1 OR status IN (" + ",".join(
|
||||
[str(show) for show in (Quality.DOWNLOADED + Quality.SNATCHED + Quality.SNATCHED_PROPER) + [
|
||||
|
Loading…
Reference in New Issue
Block a user