From f36d22646ca16dbe17eb34b3a8b2a7f6d6e4d289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=C3=A1n=20C=20McCord?= Date: Sun, 17 Jul 2022 13:42:00 -0400 Subject: [PATCH] handle empty initial cue --- src/room.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/room.js b/src/room.js index 2c09b55..9f52304 100644 --- a/src/room.js +++ b/src/room.js @@ -450,6 +450,10 @@ class Source { } cueChanged() { + if (!this) { + return + } + var self = this var latestCuedTrack = performanceTime.latestCuedTrack(self.data)