diff --git a/changelog.txt b/changelog.txt index b92adb29..9ea47756 100644 --- a/changelog.txt +++ b/changelog.txt @@ -11,3 +11,4 @@ _None_ [B]Channel related[/B] * Fixed: TV4 Recent. * Fixed: NPO streams (Fixes #1854). +* Fixed: NPO Plus content not showing (Fixes #1862). diff --git a/channels/channel.nos/nos2010/chn_nos2010.py b/channels/channel.nos/nos2010/chn_nos2010.py index 97ec2e6b..3af02e76 100644 --- a/channels/channel.nos/nos2010/chn_nos2010.py +++ b/channels/channel.nos/nos2010/chn_nos2010.py @@ -1307,7 +1307,7 @@ def __has_premium(self) -> bool: data = UriHandler.open("https://npo.nl/start/api/auth/session") json = JsonHelper(data) - subscriptions = json.get_value("subscription", fallback=None) + subscriptions = json.get_value("hasSubscription", fallback=None) self.__has_premium_cache = subscriptions is not None Logger.debug("Found subscriptions: %s", subscriptions)