mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-09 16:50:01 +00:00
[overlays] Fix: JOIN / PART events spamming the database
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
7f4470e692
commit
fbfcb959c0
1 changed files with 9 additions and 11 deletions
|
@ -192,6 +192,7 @@ func Register(args plugins.RegistrationArguments) (err error) {
|
|||
Fields: eventData,
|
||||
}
|
||||
|
||||
if !str.StringInSlice(event, storeExemption) {
|
||||
if msg.EventID, err = addChannelEvent(db, plugins.DeriveChannel(nil, eventData), socketMessage{
|
||||
IsLive: false,
|
||||
Time: time.Now(),
|
||||
|
@ -200,15 +201,12 @@ func Register(args plugins.RegistrationArguments) (err error) {
|
|||
}); err != nil {
|
||||
return errors.Wrap(err, "storing event")
|
||||
}
|
||||
}
|
||||
|
||||
for _, fn := range subscribers {
|
||||
fn(msg)
|
||||
}
|
||||
|
||||
if str.StringInSlice(event, storeExemption) {
|
||||
return nil
|
||||
}
|
||||
|
||||
return nil
|
||||
}); err != nil {
|
||||
return fmt.Errorf("registering event handler: %w", err)
|
||||
|
|
Loading…
Reference in a new issue