summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/invidious/exceptions.cr3
-rw-r--r--src/invidious/videos.cr4
2 files changed, 7 insertions, 0 deletions
diff --git a/src/invidious/exceptions.cr b/src/invidious/exceptions.cr
index 05be73a6..425c08da 100644
--- a/src/invidious/exceptions.cr
+++ b/src/invidious/exceptions.cr
@@ -30,3 +30,6 @@ end
# Exception threw when an element is not found.
class NotFoundException < InfoException
end
+
+class VideoNotAvailableException < Exception
+end
diff --git a/src/invidious/videos.cr b/src/invidious/videos.cr
index cb1d1acf..5ed57727 100644
--- a/src/invidious/videos.cr
+++ b/src/invidious/videos.cr
@@ -909,6 +909,10 @@ def extract_video_info(video_id : String, proxy_region : String? = nil, context_
"reason" => JSON::Any.new(reason),
}
end
+ elsif video_id != player_response.dig("videoDetails", "videoId")
+ # YouTube may return a different video player response than expected.
+ # See: https://github.com/TeamNewPipe/NewPipe/issues/8713
+ raise VideoNotAvailableException.new("The video returned by YouTube isn't the requested one.")
else
reason = nil
end