fix: remove redundant type declaration
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user