Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

It helps! Thank you, everything’s working. I do see a lot of failures during

    async GetProfileImages(e) {
        await fetch(`https://api.twitch.tv/helix/users?login=${e}`, { headers: { "Client-ID": TWITCH_CLIENT_ID, Authorization: `Bearer ${DiscTwitchRelay.settings.oauthtoken}`, "Content-Type": "application/json" } })
            .then((e) => e.json())
            .then((e) => {
                e.data.forEach((e) => {
                    const t = e.profile_image_url || e.offline_image_url;
                    DiscTwitchRelay.chattersImgUrls[e.login] = t;
                });
            })
            .catch((e) => console.log(e));
    },

but, everything does appear to be working now! I have had an amazing time reading through your code and learning how to interact with SAMMI in new ways and using it to play with things on my stream. Thank you! <3

Huh, weird! Maybe it wasn’t grabbing and passing the token to Twitch properly for some reason. Glad you were able to get it working though, and thank you as well!