Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[plugin.video.streamz@matrix] 1.1.4+matrix.1 #4466

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions plugin.video.streamz/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v1.1.4](https://github.com/add-ons/plugin.video.streamz/tree/v1.1.4) (2024-02-26)

[Full Changelog](https://github.com/add-ons/plugin.video.streamz/compare/v1.1.3...v1.1.4)

**Fixed bugs:**

- Bump API to 15 [\#60](https://github.com/add-ons/plugin.video.streamz/pull/60) ([michaelarnauts](https://github.com/michaelarnauts))

## [v1.1.3](https://github.com/add-ons/plugin.video.streamz/tree/v1.1.3) (2023-11-04)

[Full Changelog](https://github.com/add-ons/plugin.video.streamz/compare/v1.1.2...v1.1.3)
Expand Down
4 changes: 2 additions & 2 deletions plugin.video.streamz/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.streamz" name="Streamz" version="1.1.3+matrix.1" provider-name="Michaël Arnauts">
<addon id="plugin.video.streamz" name="Streamz" version="1.1.4+matrix.1" provider-name="Michaël Arnauts">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="script.module.dateutil" version="2.6.0" />
Expand All @@ -21,7 +21,7 @@
<disclaimer lang="nl_NL">Deze add-on wordt niet ondersteund door Streamz BV, en wordt aangeboden 'as is', zonder enige garantie. De Streamz naam en Streamz logo zijn eigendom van Streamz BV en worden gebruikt in overeenstemming met de 'fair use' regels.</disclaimer>
<platform>all</platform>
<license>GPL-3.0-only</license>
<news>v1.1.3 (2023-11-04)
<news>v1.1.4 (2024-02-26)
- Fix API.</news>
<source>https://github.com/add-ons/plugin.video.streamz</source>
<assets>
Expand Down
2 changes: 1 addition & 1 deletion plugin.video.streamz/resources/lib/streamz/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_storefront_category(self, storefront, category):
result = json.loads(response.text)

items = []
for item in result.get('teasers'):
for item in result.get('row', {}).get('teasers', []):
if item.get('target', {}).get('type') == CONTENT_TYPE_MOVIE:
items.append(self._parse_movie_teaser(item))

Expand Down
4 changes: 2 additions & 2 deletions plugin.video.streamz/resources/lib/streamz/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def close(self):
# Setup a static session that can be reused for all calls
SESSION = requests.Session()
SESSION.headers = {
'User-Agent': 'STREAMZ/14.231023 (be.vmma.streamz; build:18041; Android 23) okhttp/4.11.0',
'x-app-version': '14',
'User-Agent': 'STREAMZ/15.231023 (be.vmma.streamz; build:18041; Android 23) okhttp/4.11.0',
'x-app-version': '15',
'x-persgroep-mobile-app': 'true',
'x-persgroep-os': 'android',
'x-persgroep-os-version': '28',
Expand Down
Loading