diff --git a/interface.py b/interface.py index 93a8d3d..a149fdc 100644 --- a/interface.py +++ b/interface.py @@ -384,6 +384,12 @@ def post(): var.bot.clear() else: var.bot.stop() + elif action == "next": + if not var.bot.is_pause: + var.bot.interrupt() + else: + var.playlist.next() + var.bot.wait_for_ready = True elif action == "pause": var.bot.pause() elif action == "resume":