buffer: Fix buffer name format.
This commit is contained in:
parent
ebcbf454d9
commit
084cb1985e
1 changed files with 1 additions and 1 deletions
|
@ -786,7 +786,7 @@ class RoomBuffer(object):
|
|||
self.joined = True
|
||||
self.leave_event_id = None # type: Optional[str]
|
||||
|
||||
buffer_name = "{}.{}".format(room.room_id, server_name)
|
||||
buffer_name = "{}.{}".format(server_name, room.room_id)
|
||||
|
||||
# This dict remembers the connection from a user_id to the name we
|
||||
# displayed in the buffer
|
||||
|
|
Loading…
Reference in a new issue