diff options
author | 2024-04-18 13:22:55 +0200 | |
---|---|---|
committer | 2024-04-18 13:22:55 +0200 | |
commit | b7c629a18a3154b7cf8231ce6e4cbb47e8c32730 (patch) | |
tree | c1b01886d4a4bdbb8a4ca0fb5be7b2766b7091dd /internal/api/model/status.go | |
parent | [feature] Stub conversations endpoint (#2853) (diff) | |
download | gotosocial-b7c629a18a3154b7cf8231ce6e4cbb47e8c32730.tar.xz |
[bugfix] Fix incorrect field name for status source, add helpful message (#2854)
* [bugfix] Fix incorrect field name for status source, add helpful message
* swagger
* yyammm
Diffstat (limited to 'internal/api/model/status.go')
-rw-r--r-- | internal/api/model/status.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/model/status.go b/internal/api/model/status.go index d7d3266ed..9543303eb 100644 --- a/internal/api/model/status.go +++ b/internal/api/model/status.go @@ -259,7 +259,7 @@ type StatusSource struct { // example: 01FBVD42CQ3ZEEVMW180SBX03B ID string `json:"id"` // Plain-text source of a status. - Text string `json:"source"` + Text string `json:"text"` // Plain-text version of spoiler text. SpoilerText string `json:"spoiler_text"` } |