From 79789a8099007c3e2810f155fa5d612a1323a9b2 Mon Sep 17 00:00:00 2001 From: blank X Date: Sat, 13 Mar 2021 11:57:53 +0700 Subject: [PATCH] Remove debug print --- sponsorblock_minimal.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/sponsorblock_minimal.lua b/sponsorblock_minimal.lua index 890e891..94f0e5b 100644 --- a/sponsorblock_minimal.lua +++ b/sponsorblock_minimal.lua @@ -53,7 +53,6 @@ function file_loaded() local video_path = mp.get_property("path") local video_title = mp.get_property("media-title") youtube_id = string.match(video_title, ".* %(([%w-_]+)%)") - print(youtube_id) if not string.match(video_path, "https?://.*%.?googlevideo%.com/.*") or not youtube_id or string.len(youtube_id) < 11 then return end youtube_id = string.sub(youtube_id, 1, 11)