Skip to content

Commit 62ae5e5

Browse files
authored
Merge pull request #4589 from basrieter/retrospect-matrix
[plugin.video.retrospect] v5.7.20
2 parents 90837bf + 3b8ed6b commit 62ae5e5

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

plugin.video.retrospect/addon.xml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<addon id="plugin.video.retrospect"
3-
version="5.7.19"
3+
version="5.7.20"
44
name="Retrospect"
55
provider-name="Bas Rieter">
66

@@ -123,9 +123,9 @@
123123
<platform>all</platform>
124124
<license>GPL-3.0-or-later</license>
125125
<language>en nl de sv no lt lv fi</language>
126-
<news>[B]Retrospect v5.7.19 - Changelog - 2024-10-17[/B]
126+
<news>[B]Retrospect v5.7.20 - Changelog - 2024-10-21[/B]
127127

128-
Updated a number of channels that were broken.
128+
Fixed the NPO channel that broke.
129129

130130
[B]Framework related[/B]
131131
_None_
@@ -134,12 +134,7 @@ _None_
134134
_None_
135135

136136
[B]Channel related[/B]
137-
* Fixed: SVT category listings broke (Fixes #1843).
138-
* Fixed: TV4 API issues.
139-
* Fixed: RegioGroei Broke.
140-
* Fixed: Vier parsing (Fixes #1846).
141-
* Fixed: TV4 Category listing (Fixes #1844).
142-
* Fixed: UR Play Category listing (Fixes #1847).
137+
* Fixed: NPO streams (Fixes #1854).
143138

144139
</news>
145140
<assets>

plugin.video.retrospect/resources/lib/streams/npostream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def add_mpd_stream_from_npo(url, episode_id: str, item: MediaItem,
6868
token = UriHandler.open(f"https://npo.nl/start/api/domain/player-token?productId={episode_id}", no_cache=True)
6969

7070
token_json = JsonHelper(token)
71-
token_value = token_json.get_value("token")
71+
token_value = token_json.get_value("jwt")
7272

7373
video_headers = {"authorization": token_value}
7474
video_data = {

0 commit comments

Comments
 (0)