Skip to content

Commit

Permalink
fix: fix crash when opening a playlist
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhd1701 committed Aug 3, 2022
1 parent f4ce4cd commit d1bb3ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gridplayer/player/managers/playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def cmd_open_playlist(self):
files = dialog.selectedFiles()

if files:
self.load_playlist_file(files[0])
self.load_playlist_file(Path(files[0]))

def cmd_close_playlist(self) -> bool:
if not self.check_playlist_save():
Expand Down

0 comments on commit d1bb3ae

Please sign in to comment.