Fixed not verbose irc mode, fixed seeking

This commit is contained in:
Uriziel 2013-01-24 23:46:15 +01:00
parent fc1200a166
commit 5ad9e36b4d

View File

@ -25,7 +25,7 @@ class SyncFactory(Factory):
self._rooms = {} self._rooms = {}
self._roomStates = {} self._roomStates = {}
self._roomUpdate = threading.RLock() self._roomUpdate = threading.RLock()
self.ircVerbose = ircVerbose, self.ircVerbose = ircVerbose
ircConnectionData = self.readIrcConfig(ircConfig) ircConnectionData = self.readIrcConfig(ircConfig)
if(ircConnectionData): if(ircConnectionData):
self.setupIRCBot(ircConnectionData) self.setupIRCBot(ircConnectionData)
@ -213,7 +213,7 @@ class SyncFactory(Factory):
elif(not paused and pauseChanged): elif(not paused and pauseChanged):
self.ircBot.sp_unpaused(watcher.name, watcher.room) self.ircBot.sp_unpaused(watcher.name, watcher.room)
if(doSeek and position): if(doSeek and position):
self.ircBot.sp_seek(watcher.name, watcher.room, oldPosition, position) self.ircBot.sp_seek(watcher.name, oldPosition, position, watcher.room)
l = lambda w: self.sendState(w, doSeek, watcher.latency, forceUpdate) l = lambda w: self.sendState(w, doSeek, watcher.latency, forceUpdate)
self.broadcastRoom(watcher.watcherProtocol, l) self.broadcastRoom(watcher.watcherProtocol, l)