From f377263a0a5a5e5b0f0611682158e378c9b92ead Mon Sep 17 00:00:00 2001 From: The Wobbler Date: Wed, 12 Feb 2025 14:47:24 +0100 Subject: [PATCH] Fixed a bug where playlists weren't saved when they weren't loaded from a .m3u. --- wobuzz/player/playlist.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wobuzz/player/playlist.py b/wobuzz/player/playlist.py index 644006a..53554e1 100644 --- a/wobuzz/player/playlist.py +++ b/wobuzz/player/playlist.py @@ -49,6 +49,8 @@ class Playlist: i += 1 + self.loaded = True + def load(self): loading_thread = threading.Thread(target=self.loading_thread) loading_thread.start()