Skip to content

Commit

Permalink
fix: typo in the subscribeStalled reducer
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerexmg committed Feb 9, 2024
1 parent 84e0907 commit 484b97c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InteractiveBridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ export class InteractiveBridge extends LiveryBridge {
async subscribeStalled(listener: (value: boolean) => void) {
return reducedSubscribe<PlaybackState, boolean>(
(unreducedListener) => this.subscribePlaybackState(unreducedListener),
(value) => ['BUFFERING, SEEKING'].includes(value),
(value) => ['BUFFERING', 'SEEKING'].includes(value),
listener,
);
}
Expand Down

0 comments on commit 484b97c

Please sign in to comment.