Update LastStatusAt field, fixes #1
This commit is contained in:
parent
699dc4e1a8
commit
6d41c8c17e
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ type MastodonPost struct {
|
||||||
FollowersCount int `json:"followers_count"`
|
FollowersCount int `json:"followers_count"`
|
||||||
FollowingCount int `json:"following_count"`
|
FollowingCount int `json:"following_count"`
|
||||||
StatusesCount int `json:"statuses_count"`
|
StatusesCount int `json:"statuses_count"`
|
||||||
LastStatusAt time.Time `json:"last_status_at"`
|
LastStatusAt string `json:"last_status_at"`
|
||||||
Emojis []any `json:"emojis,omitempty"`
|
Emojis []any `json:"emojis,omitempty"`
|
||||||
Fields []struct {
|
Fields []struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
|
Loading…
Reference in a new issue