Skip to content

Commit

Permalink
Merge pull request #198 from lucas19961/patch-1
Browse files Browse the repository at this point in the history
[FIX] Huge 7TV Emote Bug
  • Loading branch information
gempir committed Dec 2, 2023
2 parents bf93d84 + ec4308e commit dd7fc40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/src/hooks/use7tvChannelEmotes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ export function use7tvChannelEmotes(channelId: string): Array<ThirdPartyEmote> {
id: channelEmote.id,
code: channelEmote.name,
urls: {
small: `${emoteURL}/${webpEmotes[0].name}`,
medium: `${emoteURL}/${webpEmotes[1].name}`,
big: `${emoteURL}/${webpEmotes[2].name}`,
small: `${emoteURL}/${webpEmotes[0]?.name}`,
medium: `${emoteURL}/${webpEmotes[1]?.name}`,
big: `${emoteURL}/${webpEmotes[2]?.name}`,
}
});
}

return emotes;
}
}

0 comments on commit dd7fc40

Please sign in to comment.