From 58a0547def651dad1db49a923537faa63ac6fc08 Mon Sep 17 00:00:00 2001 From: wukko Date: Wed, 17 Jan 2024 15:55:45 +0600 Subject: [PATCH] vimeo: remove debugging (oops) --- src/modules/processing/services/vimeo.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/processing/services/vimeo.js b/src/modules/processing/services/vimeo.js index b2a031cd..db623bdb 100644 --- a/src/modules/processing/services/vimeo.js +++ b/src/modules/processing/services/vimeo.js @@ -66,7 +66,6 @@ export default async function(obj) { let masterJSON_Video = masterJSON.video.sort((a, b) => Number(b.width) - Number(a.width)).filter(a => ["dash", "mp42"].includes(a['format'])), bestVideo = masterJSON_Video[0]; - console.log(masterJSON_Video) if (Number(quality) < Number(resolutionMatch[bestVideo["width"]])) { bestVideo = masterJSON_Video.find(i => resolutionMatch[i["width"]] === quality) }