aboutsummaryrefslogtreecommitdiff
path: root/matrix/rooms/room.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2020-04-20 22:46:41 +0300
committerTulir Asokan <tulir@maunium.net>2020-04-20 22:46:41 +0300
commit6b4adccce22b6c2ea81d9dbdd78657ea46f1acbc (patch)
tree4a289d2d8832db45fa9ce02fb57a7d05fa34f3da /matrix/rooms/room.go
parentbc80bc458b8ac9e74780883545116dade8df9bf9 (diff)
Fix loading member events
Diffstat (limited to 'matrix/rooms/room.go')
-rw-r--r--matrix/rooms/room.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/matrix/rooms/room.go b/matrix/rooms/room.go
index 7feae89..0238cfb 100644
--- a/matrix/rooms/room.go
+++ b/matrix/rooms/room.go
@@ -213,6 +213,10 @@ func (room *Room) Unload() bool {
debug.Print("Unloading", room.ID)
room.Save()
room.state = nil
+ room.memberCache = nil
+ room.exMemberCache = nil
+ room.firstMemberCache = nil
+ room.secondMemberCache = nil
if room.postUnload != nil {
room.postUnload()
}
@@ -408,7 +412,7 @@ func (room *Room) UpdateState(evt *event.Event) {
case *event.TopicEventContent:
room.topicCache = content.Topic
case *event.EncryptionEventContent:
- if content.Algorithm == "m.megolm.v1.aes-sha2" {
+ if content.Algorithm == event.AlgorithmMegolmV1 {
room.Encrypted = true
}
}