From c8dae9cfab466a09650cc4ae5517d6a8be169aef Mon Sep 17 00:00:00 2001 From: Till Faelligen <2353100+S7evinK@users.noreply.github.com> Date: Tue, 25 Apr 2023 16:52:57 +0200 Subject: [PATCH] Linter --- clientapi/routing/profile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientapi/routing/profile.go b/clientapi/routing/profile.go index 40ee5e3e0..b08be6ee9 100644 --- a/clientapi/routing/profile.go +++ b/clientapi/routing/profile.go @@ -357,7 +357,7 @@ func buildMembershipEvents( content.DisplayName = newProfile.DisplayName content.AvatarURL = newProfile.AvatarURL - if err := builder.SetContent(content); err != nil { + if err = builder.SetContent(content); err != nil { return nil, err }