Skip to content

Commit

Permalink
handle empty initial cue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulexus committed Jul 17, 2022
1 parent e13c877 commit f36d226
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/room.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,10 @@ class Source {
}

cueChanged() {
if (!this) {
return
}

var self = this

var latestCuedTrack = performanceTime.latestCuedTrack(self.data)
Expand Down

0 comments on commit f36d226

Please sign in to comment.