Fix empty .syncplay playerpath bug
This commit is contained in:
parent
d40576d0fe
commit
e0bbfd2fd8
@ -55,7 +55,7 @@ class GuiConfiguration:
|
|||||||
|
|
||||||
|
|
||||||
def _tryToFillPlayerPath(self, playerpath):
|
def _tryToFillPlayerPath(self, playerpath):
|
||||||
if os.path.isfile(playerpath):
|
if playerpath != None and os.path.isfile(playerpath):
|
||||||
return playerpath
|
return playerpath
|
||||||
|
|
||||||
for path in self._availablePlayerPaths:
|
for path in self._availablePlayerPaths:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user