Feat: Add Starck Filmes Indexer (#30)

* feat: add starck filmes indexer

* feat: findYearFromText year trim space
This commit is contained in:
Douglas Paz
2025-07-16 15:25:17 -03:00
committed by GitHub
parent 5bdd2cdd85
commit 6525b5b2b0
4 changed files with 266 additions and 1 deletions

View File

@@ -364,7 +364,7 @@ func findYearFromText(text string, title string) (year string) {
year = yearMatch[1]
}
}
return year
return strings.TrimSpace(year)
}
func findAudioFromText(text string) []schema.Audio {