Removed old patches

This commit is contained in:
2017-11-01 20:11:05 +01:00
parent e70dc0daed
commit cf00461feb
28 changed files with 57 additions and 403 deletions

View File

@ -9,10 +9,12 @@ import (
)
func main() {
defer arn.Node.Close()
now := time.Now()
futureThreshold := 8 * 7 * 24 * time.Hour
for anime := range arn.MustStreamAnime() {
for anime := range arn.StreamAnime() {
modified := false
// Try to find incorrect airing dates
@ -38,7 +40,7 @@ func main() {
}
if modified == true {
arn.PanicOnError(anime.Episodes().Save())
anime.Episodes().Save()
}
}
}