We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4e77a0 commit f3af88dCopy full SHA for f3af88d
TwitchDownloaderCore/Tools/HighlightIcons.cs
@@ -155,8 +155,9 @@ public static HighlightType GetHighlightType(Comment comment)
155
return HighlightType.Raid;
156
}
157
158
+ const string TWITCH_ACCOUNT_ID = "12826";
159
const string ANONYMOUS_GIFT_ACCOUNT_ID = "274598607"; // Display name is 'AnAnonymousGifter'
- if (comment.commenter._id is ANONYMOUS_GIFT_ACCOUNT_ID && GiftAnonymousRegex.IsMatch(comment.message.body))
160
+ if (comment.commenter._id is ANONYMOUS_GIFT_ACCOUNT_ID or TWITCH_ACCOUNT_ID && GiftAnonymousRegex.IsMatch(comment.message.body))
161
return HighlightType.GiftedAnonymous;
162
163
return HighlightType.None;
0 commit comments