From a4df679439d423c07080f3f879bad9381a6d4544 Mon Sep 17 00:00:00 2001
From: Ashley //// <iamashley@duck.com>
Date: Thu, 25 Apr 2024 17:33:36 +0000
Subject: [PATCH] test commit ignore pls

---
 src/libpoketube/libpoketube-core.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libpoketube/libpoketube-core.js b/src/libpoketube/libpoketube-core.js
index a2b18e8b..f3e0f85f 100644
--- a/src/libpoketube/libpoketube-core.js
+++ b/src/libpoketube/libpoketube-core.js
@@ -110,7 +110,7 @@ async getYouTubeApiVideo(f, v, contentlang, contentregion) {
 
         // Retry fetching videoInfo if vid is null, limited to 3 retries
         let retryCount = 0;
-        while (!vid && retryCount < 3) {
+        while (vid.error && retryCount < 3) {
             console.log(`Retrying fetching videoInfo... Retry ${retryCount + 1}`);
             const retryVideoInfo = await fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text());
             vid = await this.getJson(retryVideoInfo);