Remove toString calls (upgrade to latest pixy version)
This commit is contained in:
@ -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")
|
||||
|
||||
|
@ -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")
|
||||
|
||||
|
@ -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")
|
||||
|
||||
|
Reference in New Issue
Block a user