mirror of https://github.com/Syncplay/syncplay
Update consoleUI.py - Fix extract seek sign line
This commit is contained in:
parent
2d70ec5e2d
commit
a4ebfd039a
|
@ -74,7 +74,7 @@ class ConsoleUI(threading.Thread):
|
|||
self._syncplayClient.setUserOffset(t)
|
||||
return True
|
||||
elif s:
|
||||
sign = self._extractSign(s)
|
||||
sign = self._extractSign(s.group('sign'))
|
||||
t = utils.parseTime(s.group('time'))
|
||||
if(t is None):
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue