Skip to content

Commit

Permalink
Merge pull request #733 from MoojMidge/v7.0.6
Browse files Browse the repository at this point in the history
v7.0.6.1
  • Loading branch information
MoojMidge committed Apr 28, 2024
2 parents e3fed7c + 8b944ce commit 0c817c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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.youtube" name="YouTube" version="7.0.6" provider-name="anxdpanic, bromix, MoojMidge">
<addon id="plugin.video.youtube" name="YouTube" version="7.0.6.1" provider-name="anxdpanic, bromix, MoojMidge">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.27.1"/>
Expand Down
3 changes: 2 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v7.0.6
## v7.0.6.1
### Fixed
- Improve updating containers and (re)loading windows #681
- Fix refreshing video listing also forcing next pages to refresh when loaded
Expand All @@ -8,6 +8,7 @@
- Possibly fix issues reported in comments of #704
- Update error checks to avoid unnecessary retries of player requests
- Fix adding and viewing items to internal bookmarks and watchlater list #720
- Fix error checks to prevent prematurely stopping retries of player requests #730

### Changed
- Setup Wizard default settings now disable pre-downloading subtitles if MPEG-DASH is enabled
Expand Down
4 changes: 3 additions & 1 deletion resources/lib/youtube_plugin/youtube/helper/video_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,9 @@ def _get_video_info(self):

reasons = (
self._context.localize(574, 'country').lower(),
self._context.localize(10005, 'not available').lower(),
# not available error appears to vary by language/region/video type
# disable this check for now
# self._context.localize(10005, 'not available').lower(),
)

client_data = {'json': {'videoId': video_id}}
Expand Down

0 comments on commit 0c817c0

Please sign in to comment.