Remove toString calls (upgrade to latest pixy version)

This commit is contained in:
2018-04-25 22:15:42 +02:00
parent a6fea3965c
commit 526a7998bb
14 changed files with 18 additions and 18 deletions

View File

@ -1,5 +1,5 @@
component ImportAnilist(user *arn.User, matches []*arn.AniListMatch)
h1= "Preview: anilist.co (" + user.Accounts.AniList.Nick + ", " + toString(len(matches)) + " anime)"
h1= "Preview: anilist.co (" + user.Accounts.AniList.Nick + ", " + fmt.Sprint(len(matches)) + " anime)"
ImportButton("/import/anilist/animelist/finish")

View File

@ -1,5 +1,5 @@
component ImportKitsu(user *arn.User, matches []*arn.KitsuMatch)
h1= "Preview: kitsu.io (" + user.Accounts.Kitsu.Nick + ", " + toString(len(matches)) + " anime)"
h1= "Preview: kitsu.io (" + user.Accounts.Kitsu.Nick + ", " + fmt.Sprint(len(matches)) + " anime)"
ImportButton("/import/kitsu/animelist/finish")

View File

@ -1,5 +1,5 @@
component ImportMyAnimeList(user *arn.User, matches []*arn.MyAnimeListMatch)
h1= "Preview: myanimelist.net (" + user.Accounts.MyAnimeList.Nick + ", " + toString(len(matches)) + " anime)"
h1= "Preview: myanimelist.net (" + user.Accounts.MyAnimeList.Nick + ", " + fmt.Sprint(len(matches)) + " anime)"
ImportButton("/import/myanimelist/animelist/finish")