Skip to content

Commit

Permalink
Merge branch '1854-npo-is-kapot'
Browse files Browse the repository at this point in the history
  • Loading branch information
basrieter committed Oct 21, 2024
2 parents 577e3ce + d44fa3a commit f935930
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .sonarcloud.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=retrospect

# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=Retrospect
sonar.projectVersion=5.7.19
sonar.projectVersion=5.7.20
sonar.python.version=3

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
Expand Down
13 changes: 4 additions & 9 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.retrospect"
version="5.7.19"
version="5.7.20"
name="Retrospect"
provider-name="Bas Rieter">

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

Updated a number of channels that were broken.
Fixed the NPO channel that broke.

[B]Framework related[/B]
_None_
Expand All @@ -134,12 +134,7 @@ _None_
_None_

[B]Channel related[/B]
* Fixed: SVT category listings broke (Fixes #1843).
* Fixed: TV4 API issues.
* Fixed: RegioGroei Broke.
* Fixed: Vier parsing (Fixes #1846).
* Fixed: TV4 Category listing (Fixes #1844).
* Fixed: UR Play Category listing (Fixes #1847).
* Fixed: NPO streams (Fixes #1854).

</news>
<assets>
Expand Down
11 changes: 3 additions & 8 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[B]Retrospect v5.7.19 - Changelog - 2024-10-17[/B]
[B]Retrospect v5.7.20 - Changelog - 2024-10-21[/B]

Updated a number of channels that were broken.
Fixed the NPO channel that broke.

[B]Framework related[/B]
_None_
Expand All @@ -9,9 +9,4 @@ _None_
_None_

[B]Channel related[/B]
* Fixed: SVT category listings broke (Fixes #1843).
* Fixed: TV4 API issues.
* Fixed: RegioGroei Broke.
* Fixed: Vier parsing (Fixes #1846).
* Fixed: TV4 Category listing (Fixes #1844).
* Fixed: UR Play Category listing (Fixes #1847).
* Fixed: NPO streams (Fixes #1854).
2 changes: 1 addition & 1 deletion resources/lib/streams/npostream.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def add_mpd_stream_from_npo(url, episode_id: str, item: MediaItem,
token = UriHandler.open(f"https://npo.nl/start/api/domain/player-token?productId={episode_id}", no_cache=True)

token_json = JsonHelper(token)
token_value = token_json.get_value("token")
token_value = token_json.get_value("jwt")

video_headers = {"authorization": token_value}
video_data = {
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=retrospect

# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=Retrospect
sonar.projectVersion=5.7.19
sonar.projectVersion=5.7.20
sonar.python.version=3

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
Expand Down

0 comments on commit f935930

Please sign in to comment.