From 8b944ce4b58646afd8292163c3b67907900103fb Mon Sep 17 00:00:00 2001 From: MoojMidge <56883549+MoojMidge@users.noreply.github.com> Date: Mon, 29 Apr 2024 04:55:11 +1000 Subject: [PATCH] v7.0.6.1 - Hotfix #730 --- addon.xml | 2 +- changelog.txt | 3 ++- resources/lib/youtube_plugin/youtube/helper/video_info.py | 4 +++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/addon.xml b/addon.xml index ea7dab89d..a1e4e39e4 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/changelog.txt b/changelog.txt index 655581233..ecd198cad 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 @@ -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 diff --git a/resources/lib/youtube_plugin/youtube/helper/video_info.py b/resources/lib/youtube_plugin/youtube/helper/video_info.py index 0348a2c4d..28cea1343 100644 --- a/resources/lib/youtube_plugin/youtube/helper/video_info.py +++ b/resources/lib/youtube_plugin/youtube/helper/video_info.py @@ -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}}