Room change no longer rewinds the video

This commit is contained in:
Uriziel 2012-12-12 00:38:01 +01:00
parent fda95e437e
commit 2772762dcc
1 changed files with 3 additions and 0 deletions

View File

@ -166,6 +166,9 @@ class SyncFactory(Factory):
oldRoom = watcher.room oldRoom = watcher.room
self._createRoomIfDoesntExist(room) self._createRoomIfDoesntExist(room)
self._rooms[room][watcherProtocol] = watcher self._rooms[room][watcherProtocol] = watcher
self._roomStates[room]["position"] = watcher.position
self._roomStates[room]["setBy"] = watcher.name
self._roomStates[room]["lastUpdate"] = time.time()
self._deleteRoomIfEmpty(oldRoom) self._deleteRoomIfEmpty(oldRoom)
if(self.isolateRooms): #this is trick to inform old room about leaving if(self.isolateRooms): #this is trick to inform old room about leaving
l = lambda w: w.sendUserSetting(watcher.name, room, watcher.file, None) l = lambda w: w.sendUserSetting(watcher.name, room, watcher.file, None)