1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00

events: Remove unnecessary go calls (#352)

This commit is contained in:
James Hillyerd
2023-02-28 10:25:16 -08:00
committed by GitHub
parent 5a886813c3
commit e84d21cb28
2 changed files with 3 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ func (s *StoreManager) Deliver(
// Emit message stored event.
event := delivery.Meta
event.ID = id
go s.ExtHost.Events.AfterMessageStored.Emit(&event)
s.ExtHost.Events.AfterMessageStored.Emit(&event)
return id, nil
}