fix: remove redundant type declaration

This commit is contained in:
2026-05-27 11:03:11 +02:00
parent 0ebe6e5963
commit 69cfac8c9f

View File

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