New images

This commit is contained in:
2017-11-09 18:31:32 +01:00
parent 4558939bff
commit d07ae4ebf6
8 changed files with 71 additions and 30 deletions

View File

@ -83,12 +83,7 @@ func getMatches(ctx *aero.Context) ([]*arn.AniListMatch, string) {
return nil, ctx.Error(http.StatusBadRequest, "Couldn't authorize the Anime Notifier app on AniList", authErr)
}
allAnime, allErr := arn.AllAnime()
if allErr != nil {
return nil, ctx.Error(http.StatusBadRequest, "Couldn't load notify.moe list of all anime", allErr)
}
allAnime := arn.AllAnime()
anilistAnimeList, err := anilist.GetAnimeList(user.Accounts.AniList.Nick)
if err != nil {