Skip to content

Commit

Permalink
Ensure self user is present in after sync in obby backend
Browse files Browse the repository at this point in the history
* obby/rudel-obby-client.el (rudel-obby/obby_sync_final): switch to
  we-finalized when the self user is missing
  • Loading branch information
scymtym committed Mar 12, 2010
1 parent ff63496 commit 05be01d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion obby/rudel-obby-client.el
Expand Up @@ -622,7 +622,10 @@ failure."))
(defmethod rudel-obby/obby_sync_final
((this rudel-obby-client-state-session-synching))
"Handle obby 'sync_final' message."
'idle)
(with-slots (have-self) this
(if have-self
'idle
'we-finalized)))

(defmethod object-print ((this rudel-obby-client-state-session-synching)
&rest strings)
Expand Down

0 comments on commit 05be01d

Please sign in to comment.