Fix check for faulty account identifier not working
This commit is contained in:
parent
726faaa28d
commit
c56dbd0f38
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -154,7 +154,7 @@ def get_subscriptions_accounts_videos(limit=12):
|
|||
latest = []
|
||||
for sub in get_subscriptions_accounts():
|
||||
result = get_latest_account_videos(sub)
|
||||
if result["status"] == 200:
|
||||
if "error" not in result:
|
||||
account_latest = get_latest_account_videos(sub)["data"]
|
||||
latest.extend(account_latest)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue