From 2efa3e0bf693bb6ec7b9c5233f5d9c52a29a0f05 Mon Sep 17 00:00:00 2001 From: Rafostar <40623528+Rafostar@users.noreply.github.com> Date: Sun, 11 Apr 2021 16:34:02 +0200 Subject: [PATCH] YT: fix non-working best combined URIs Fix an undefined variable introduced during recent code cleanup --- src/youtube.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/youtube.js b/src/youtube.js index f0c97085..afc34a5d 100644 --- a/src/youtube.js +++ b/src/youtube.js @@ -332,7 +332,7 @@ var YouTubeClient = GObject.registerClass({ } if(!uri) - uri = this.ytClient.getBestCombinedUri(info); + uri = this.getBestCombinedUri(info); if(!uri) throw new Error('no YouTube video URI');