From b41f7ed97675b3215ab6230ef744ae7067afa4d8 Mon Sep 17 00:00:00 2001 From: Kelvin <kelvin@futo.org> Date: Sat, 4 Nov 2023 18:41:37 +0100 Subject: [PATCH] Properly intercept no video found --- YoutubeConfig.json | 2 +- YoutubeScript.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/YoutubeConfig.json b/YoutubeConfig.json index 135833b..e5db5b3 100644 --- a/YoutubeConfig.json +++ b/YoutubeConfig.json @@ -7,7 +7,7 @@ "sourceUrl": "https://plugins.grayjay.app/Youtube/YoutubeConfig.json", "repositoryUrl": "https://futo.org", "scriptUrl": "./YoutubeScript.js", - "version": 137, + "version": 138, "iconUrl": "./youtube.png", "id": "35ae969a-a7db-11ed-afa1-0242ac120002", diff --git a/YoutubeScript.js b/YoutubeScript.js index 855043d..a8e72b6 100644 --- a/YoutubeScript.js +++ b/YoutubeScript.js @@ -369,6 +369,8 @@ source.getContentDetails = (url, useAuth) => { const videoDetails = extractVideoPage_VideoDetails(initialData, initialPlayerData, { url: url }, jsUrl); + if(videoDetails == null) + return new UnavailableException("No video found"); if(!videoDetails.live && (videoDetails.video?.videoSources == null || videoDetails.video.videoSources.length == 0) && -- GitLab