summaryrefslogtreecommitdiff
path: root/twitch.html
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-10-26 00:17:05 +0500
committerilotterytea <iltsu@alright.party>2025-10-26 00:17:05 +0500
commit0ac966b46700a725b155309147912c7dc53740b2 (patch)
tree990283caa9db921b20b4dedc71568c7c67837822 /twitch.html
parent73c9099e90e1a279f65567cfe751afdc11adcbb2 (diff)
feat: 7tv emotes
Diffstat (limited to 'twitch.html')
-rw-r--r--twitch.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/twitch.html b/twitch.html
index d606b48..deafbff 100644
--- a/twitch.html
+++ b/twitch.html
@@ -42,8 +42,10 @@
// adding emotes
const emotePromises = [
+ () => getBetterTTVGlobalEmotes(emotes),
() => getBetterTTVChannelEmotes(user["id"], emotes),
- () => getBetterTTVGlobalEmotes(emotes)
+ () => get7TVChannelEmotes(user["id"], emotes),
+ () => get7TVGlobalEmotes(emotes),
];
emotePromises
.reduce((p, fn) => p.then(fn), Promise.resolve())