From c09fd505ab2e5a00630fe225cafc8ba5963c8ae2 Mon Sep 17 00:00:00 2001 From: Marinho Date: Sun, 10 Mar 2024 12:51:27 +0000 Subject: [PATCH] chg: fix: remove debug code --- api/comando_torrents.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/comando_torrents.go b/api/comando_torrents.go index a3c5d84..2e78a84 100644 --- a/api/comando_torrents.go +++ b/api/comando_torrents.go @@ -286,9 +286,6 @@ func findYearFromText(text string, title string) (year string) { } if year == "" { - fmt.Println("DEBUG: year not found in text, trying to find in title") - fmt.Println("DEBUG: title:", title) - fmt.Println("DEBUG: text:", text) re = regexp.MustCompile(`\((\d{4})\)`) yearMatch := re.FindStringSubmatch(title) if len(yearMatch) > 0 {