Skip to content

Commit

Permalink
Fixing replies
Browse files Browse the repository at this point in the history
  • Loading branch information
kabessao committed Mar 24, 2024
1 parent e281853 commit f40cb7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twitchBot/twitchBot.go
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ func (b *bot) sendMessage(message twitch.PrivateMessage) {
continue
}

if msg.Reply.ParentMsgID == message.Reply.ParentMsgID {
if msg.Tags["reply-thread-parent-msg-id"] == message.Tags["reply-thread-parent-msg-id"] {
thread += fmt.Sprintf("`%s`: %s\n", msg.User.DisplayName, parseMessage(msg.Message))
}
}
Expand Down

0 comments on commit f40cb7a

Please sign in to comment.