fix: remove redundant type declaration

This commit is contained in:
2026-05-27 11:03:11 +02:00
committed by Milas Holsting
parent a92bb0287c
commit 23eb2f9a1b

View File

@@ -217,7 +217,7 @@ func parseMeta(meta string) (episodeText string, localTime string, airType AirTy
} }
// Find the time token(s) // Find the time token(s)
var timeIdx int = -1 var timeIdx = -1
for i := 0; i < len(parts); i++ { for i := 0; i < len(parts); i++ {
if strings.Contains(parts[i], ":") && len(parts[i]) >= 4 { if strings.Contains(parts[i], ":") && len(parts[i]) >= 4 {
timeIdx = i timeIdx = i