Use stream URL as filename if stream (#65)

This commit is contained in:
Et0h 2015-06-18 21:21:57 +01:00
parent 4931cc3720
commit aa0db2517b

View File

@ -388,6 +388,9 @@ class SyncplayClient(object):
return self._globalPaused
def updateFile(self, filename, duration, path):
if utils.isURL(path):
filename = path
if not path:
return
try: