Skip to content

Commit

Permalink
Merge pull request #71 from anxdpanic/pr_matrix
Browse files Browse the repository at this point in the history
1.0.9
  • Loading branch information
anxdpanic authored Aug 29, 2021
2 parents 0c4f958 + 5e8db8d commit 7d038d1
Show file tree
Hide file tree
Showing 3 changed files with 271 additions and 308 deletions.
5 changes: 3 additions & 2 deletions 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="script.module.tubed.api" name="Tubed API" version="1.0.8" provider-name="anxdpanic">
<addon id="script.module.tubed.api" name="Tubed API" version="1.0.9" provider-name="anxdpanic">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.12.4"/>
Expand All @@ -8,7 +8,8 @@
<extension point="xbmc.service" library="resources/lib/service.py"/>
<extension point="xbmc.addon.metadata">
<news>
- fixup ratebypass
- fix ratebypass |contrib: RNavega|
- fixup issue caused by bad linting
</news>
<assets>
<icon>resources/media/icon.png</icon>
Expand Down
4 changes: 2 additions & 2 deletions resources/lib/src/tubed_api/usher/lib/mpeg_dash.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,8 +501,8 @@ def generate(self, video_id, formats, duration, quality_object=None): # pylint:
self.discard_video(mime, itag, data[key][itag], 'hdr not selected')
continue

if video_codec.lower().startswith(('av01', 'av1') and
not quality_object.av1):
if video_codec.lower().startswith(('av01', 'av1')) and \
not quality_object.av1:
self.discard_video(mime, itag, data[key][itag], 'av1 not selected')
continue

Expand Down
Loading

0 comments on commit 7d038d1

Please sign in to comment.