aboutsummaryrefslogtreecommitdiff
path: root/matrix/room/room.go
diff options
context:
space:
mode:
Diffstat (limited to 'matrix/room/room.go')
-rw-r--r--matrix/room/room.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/matrix/room/room.go b/matrix/room/room.go
index a67d363..6bafbfa 100644
--- a/matrix/room/room.go
+++ b/matrix/room/room.go
@@ -27,7 +27,7 @@ type Room struct {
*gomatrix.Room
PrevBatch string
- Owner string
+ Owner string
memberCache map[string]*Member
firstMemberCache string
nameCache string
@@ -204,7 +204,7 @@ func (room *Room) GetMember(userID string) *Member {
// NewRoom creates a new Room with the given ID
func NewRoom(roomID, owner string) *Room {
return &Room{
- Room: gomatrix.NewRoom(roomID),
+ Room: gomatrix.NewRoom(roomID),
Owner: owner,
}
}