Skip to content

Commit

Permalink
fix(TizenVideo): subtitles and audio tracks not updating
Browse files Browse the repository at this point in the history
  • Loading branch information
tymmesyde committed Aug 9, 2024
1 parent 2dfbc82 commit 20d9178
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/TizenVideo/TizenVideo.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,6 @@ function TizenVideo(options) {
return [];
}

var state = await AVPlay.getState();
if (state !== 'READY') return [];

var totalTrackInfo = await AVPlay.getTotalTrackInfo();
var textTracks = [];

Expand Down Expand Up @@ -330,9 +327,6 @@ function TizenVideo(options) {
return [];
}

var state = await AVPlay.getState();
if (state !== 'READY') return [];

var totalTrackInfo = await AVPlay.getTotalTrackInfo();
var audioTracks = [];

Expand Down

0 comments on commit 20d9178

Please sign in to comment.