Skip to content

Commit

Permalink
Added a log statement for setAutoplayMode.
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerJaacks committed Feb 14, 2024
1 parent 3b3cfa9 commit b0ae1f4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/iSponsorBlockTV/ytlounge.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ def _process_event(self, event_id: int, event_type: str, args):
data = args[0]
if data["reason"] == "disconnectedByUserScreenInitiated": # Short playing?
self.shorts_disconnected = True
elif event_type == "setAutoplayMode":
data = args[0]
print(data)

super()._process_event(event_id, event_type, args)

Expand Down

0 comments on commit b0ae1f4

Please sign in to comment.