Skip to content

Commit

Permalink
Fix for bulk subgifts
Browse files Browse the repository at this point in the history
  • Loading branch information
justlx committed Sep 4, 2024
1 parent 59a8097 commit 07f0a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StreamMarathon/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ window.addEventListener('onEventReceived', function (obj) {
if (data.sender && fieldData.subIgnoreGifts) {
return;
}
if (data.bulkGifted) { // Ignore gifting event and count only real subs
if (data.bulkGifted && data.name == data.sender) { // Ignore gifting event and count only real subs
return;
}
if (parseInt(data.tier) === 2000) {
Expand Down

0 comments on commit 07f0a33

Please sign in to comment.