mirror of
https://github.com/Luzifer/discord-community.git
synced 2024-11-09 15:40:03 +00:00
Prevent duplicate attribute parsing
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
208e2e8666
commit
56fab109a1
1 changed files with 3 additions and 2 deletions
|
@ -111,14 +111,15 @@ func (m modLivePosting) fetchAndPostForUsername(usernames ...string) error {
|
||||||
"users": len(users.Data),
|
"users": len(users.Data),
|
||||||
}).Trace("Found active streams from users")
|
}).Trace("Found active streams from users")
|
||||||
|
|
||||||
|
// @attr stream_freshness optional duration "5m" How long after stream start to post shoutout
|
||||||
|
streamFreshness := m.attrs.MustDuration("stream_freshness", ptrDuration(livePostingDefaultStreamFreshness))
|
||||||
|
|
||||||
for _, stream := range streams.Data {
|
for _, stream := range streams.Data {
|
||||||
for _, user := range users.Data {
|
for _, user := range users.Data {
|
||||||
if user.ID != stream.UserID {
|
if user.ID != stream.UserID {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// @attr stream_freshness optional duration "5m" How long after stream start to post shoutout
|
|
||||||
streamFreshness := m.attrs.MustDuration("stream_freshness", ptrDuration(livePostingDefaultStreamFreshness))
|
|
||||||
if time.Since(stream.StartedAt) > streamFreshness {
|
if time.Since(stream.StartedAt) > streamFreshness {
|
||||||
// Stream is too old, don't annoounce
|
// Stream is too old, don't annoounce
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in a new issue