diff --git a/src/discord/streams.go b/src/discord/streams.go index 6e7e3664..2687ebce 100644 --- a/src/discord/streams.go +++ b/src/discord/streams.go @@ -88,7 +88,7 @@ func UpdateStreamers(ctx context.Context, dbConn db.ConnOrTx, streamers []hmndat } else { var builder strings.Builder for _, s := range streamers { - builder.WriteString(fmt.Sprintf(":green_circle: **%s** is live: \n> _%s_\nStarted \n\n", s.Username, s.Username, s.Title, s.StartTime.Unix())) + builder.WriteString(fmt.Sprintf(":red_circle: **%s** is live: \n> _%s_\nStarted \n\n", s.Username, s.Username, s.Title, s.StartTime.Unix())) } messageContent = builder.String() } diff --git a/src/twitch/twitch.go b/src/twitch/twitch.go index ed8d31f4..87131173 100644 --- a/src/twitch/twitch.go +++ b/src/twitch/twitch.go @@ -387,7 +387,7 @@ func notifyDiscordOfLiveStream(ctx context.Context, dbConn db.ConnOrTx) error { SELECT $columns FROM twitch_stream - ORDER BY started_at DESC + ORDER BY started_at ASC `, ) if err != nil {