Don't try to load playlist file that does not exist
This commit is contained in:
parent
7d694797aa
commit
571326d501
@ -1723,6 +1723,10 @@ class SyncplayPlaylist():
|
|||||||
return filename
|
return filename
|
||||||
|
|
||||||
def loadPlaylistFromFile(self, path, shuffle=False):
|
def loadPlaylistFromFile(self, path, shuffle=False):
|
||||||
|
if not os.path.isfile(path):
|
||||||
|
self._ui.showDebugMessage("Not loading {} as file could not be found".format(path))
|
||||||
|
return
|
||||||
|
|
||||||
with open(path) as f:
|
with open(path) as f:
|
||||||
newPlaylist = f.read().splitlines()
|
newPlaylist = f.read().splitlines()
|
||||||
if shuffle:
|
if shuffle:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user