From ac7ad471a5436f37f0ea116472b4ea480769aa3c Mon Sep 17 00:00:00 2001 From: Nick Mills-Barrett Date: Fri, 24 Feb 2023 17:05:01 +0000 Subject: [PATCH] Ensure room is muted before sending events to it --- user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user.go b/user.go index 53e6ddb..7b983ba 100644 --- a/user.go +++ b/user.go @@ -440,7 +440,7 @@ func (user *User) syncChatDoublePuppetDetails(portal *Portal, justCreated bool) // TODO sync mute status properly if portal.GuildID != "" && user.bridge.Config.Bridge.MuteChannelsOnCreate { - go user.mutePortal(doublePuppetIntent, portal, false) + user.mutePortal(doublePuppetIntent, portal, false) } }