fix: force playout status > 0 for playout schedule

This commit is contained in:
jo 2021-10-01 15:15:07 +02:00
parent 3f2c6d871a
commit 01e8ee924b
1 changed files with 1 additions and 0 deletions

View File

@ -55,6 +55,7 @@ class AirtimeApiClient:
params={ params={
"ends__range": ("{}Z,{}Z".format(str_current, str_end)), "ends__range": ("{}Z,{}Z".format(str_current, str_end)),
"is_valid": True, "is_valid": True,
"playout_status__gt": 0,
} }
) )
result = {"media": {}} result = {"media": {}}