Fixed a bug where playlists weren't saved when they weren't loaded from a .m3u.

This commit is contained in:
The Wobbler 2025-02-12 14:47:24 +01:00
parent e5b7ebe6e8
commit f377263a0a

View file

@ -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()