registerApp.ID is a JSON string with Mastodon v2
authorMikael Berthe <mikael@lilotux.net>
Sat, 21 Oct 2017 21:18:11 +0200
changeset 197 485f5cfb4378
parent 196 21519d54dd4c
child 198 2dd1ed9394f0
registerApp.ID is a JSON string with Mastodon v2
app.go
--- a/app.go	Sat Oct 21 18:53:00 2017 +0200
+++ b/app.go	Sat Oct 21 21:18:11 2017 +0200
@@ -16,7 +16,7 @@
 )
 
 type registerApp struct {
-	ID           int64  `json:"id"`
+	ID           int64  `json:"id,string"`
 	ClientID     string `json:"client_id"`
 	ClientSecret string `json:"client_secret"`
 }