my.youtube.takeout: fix exception handling

This commit is contained in:
karlicoss 2023-12-28 00:13:01 +00:00
parent 1c452b12d4
commit a0ce666024

View file

@ -37,6 +37,7 @@ def watched() -> Iterable[Res[Watched]]:
for e in events():
if isinstance(e, Exception):
yield e
continue
if not isinstance(e, Activity):
continue