From 1c0769492be35bdb567182d3eba0f14e903c197f Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 1 Mar 2020 12:25:12 +0100 Subject: [PATCH] Fix History struct members --- mastodon.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mastodon.go b/mastodon.go index 5c30a1c..bd35202 100644 --- a/mastodon.go +++ b/mastodon.go @@ -277,8 +277,8 @@ type Tag struct { // History hold information for history. type History struct { Day string `json:"day"` - Uses int64 `json:"uses"` - Accounts int64 `json:"accounts"` + Uses string `json:"uses"` + Accounts string `json:"accounts"` } // Attachment hold information for attachment.