diff options
Diffstat (limited to 'connector/connector.go')
-rw-r--r-- | connector/connector.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connector/connector.go b/connector/connector.go index 92b1adc..0afcd1c 100644 --- a/connector/connector.go +++ b/connector/connector.go @@ -74,7 +74,7 @@ type Handler interface { // Called when a room's info was updated, // or the first tome a room's info is retreived - RoomInfoUpdated(roomId RoomID, info *RoomInfo) + RoomInfoUpdated(roomId RoomID, author UserID, info *RoomInfo) // Called when an event occurs in a room // This must not be called for events authored by the user of the connection @@ -120,7 +120,7 @@ type UserInfo struct { type RoomInfo struct { Name string - Description string + Topic string Picture MediaObject } |