Skip to content

Commit

Permalink
fix(state): disable canply by default only on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
timaramazanov committed Jun 4, 2024
1 parent 79d1349 commit 4363276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const initialState: State = {
isPlaying: false,
isInteracted: false,
idle: false,
canPlay: false,
canPlay: !device.isIos,
cues: [],
castActivated: false,
played: false,
Expand Down

0 comments on commit 4363276

Please sign in to comment.