From 40aa215331e80eb98c80a9e15892331264981ba6 Mon Sep 17 00:00:00 2001 From: Azareal Date: Wed, 30 Oct 2019 15:53:35 +1000 Subject: [PATCH] Fix group tags not propagating to replies. --- common/topic.go | 1 + 1 file changed, 1 insertion(+) diff --git a/common/topic.go b/common/topic.go index b08d1d51..0da1956d 100644 --- a/common/topic.go +++ b/common/topic.go @@ -441,6 +441,7 @@ func (ru *ReplyUser) Init() error { if postGroup.IsMod { ru.ClassName = Config.StaffCSS } + ru.Tag = postGroup.Tag // TODO: Make a function for this? Build a more sophisticated noavatar handling system? Do bulk user loads and let the c.UserStore initialise this? ru.Avatar, ru.MicroAvatar = BuildAvatar(ru.CreatedBy, ru.Avatar)