summaryrefslogtreecommitdiffstats
path: root/app/reaction.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/reaction.go')
-rw-r--r--app/reaction.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/reaction.go b/app/reaction.go
index debf75f7a..bf0d20e2b 100644
--- a/app/reaction.go
+++ b/app/reaction.go
@@ -18,7 +18,9 @@ func (a *App) SaveReactionForPost(reaction *model.Reaction) (*model.Reaction, *m
} else {
reaction = result.Data.(*model.Reaction)
- go a.sendReactionEvent(model.WEBSOCKET_EVENT_REACTION_ADDED, reaction, post)
+ a.Go(func() {
+ a.sendReactionEvent(model.WEBSOCKET_EVENT_REACTION_ADDED, reaction, post)
+ })
return reaction, nil
}
@@ -41,7 +43,9 @@ func (a *App) DeleteReactionForPost(reaction *model.Reaction) *model.AppError {
if result := <-a.Srv.Store.Reaction().Delete(reaction); result.Err != nil {
return result.Err
} else {
- go a.sendReactionEvent(model.WEBSOCKET_EVENT_REACTION_REMOVED, reaction, post)
+ a.Go(func() {
+ a.sendReactionEvent(model.WEBSOCKET_EVENT_REACTION_REMOVED, reaction, post)
+ })
}
return nil