From f118ccd1f092d7ec8242e7595731b75b6754423b Mon Sep 17 00:00:00 2001 From: primalmotion Date: Thu, 12 Jan 2023 15:56:38 -0800 Subject: [PATCH] fixed: room tags event listening --- matrix/sync.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/matrix/sync.go b/matrix/sync.go index 7c1d8793..09405a90 100644 --- a/matrix/sync.go +++ b/matrix/sync.go @@ -258,7 +258,12 @@ func (s *GomuksSyncer) GetFilterJSON(_ id.UserID) *mautrix.Filter { }, }, AccountData: mautrix.FilterPart{ - Types: []event.Type{event.AccountDataPushRules, event.AccountDataDirectChats, AccountDataGomuksPreferences}, + Types: []event.Type{ + event.AccountDataPushRules, + event.AccountDataDirectChats, + AccountDataGomuksPreferences, + event.AccountDataRoomTags, + }, }, Presence: mautrix.FilterPart{ NotTypes: []event.Type{event.NewEventType("*")},