We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87ee49b commit 3c60cedCopy full SHA for 3c60ced
src/LivePlaylist.py
@@ -68,6 +68,8 @@ def update_display(self):
68
cue_point_json = message['data']
69
cue_point = next(x for x in self.get_song().cue_points if x.name == cue_point_json['name'] and x.time == cue_point_json['time'])
70
cue_point.jump()
71
+ if not(self.get_song().is_playing):
72
+ self.get_song().start_playing()
73
else:
74
Log.log("Unknown command!")
75
0 commit comments