isSubscriptionStatusAvailable false while testing

thats correct

I’m testing it on a partnered channel, but I’m also building it for said channel.

If isSubscriptionStatusAvailable is true

Then the response for sub status is either false/not an object or a payload with the tier in it:

        let tier = false;
        try {
            let { subscriptionStatus } = window.Twitch.ext.viewer;
            tier = subscriptionStatus.tier;
            console.log('Status is', tier);
        } catch (e) {
            tier = false;
        }