diff options
author | 2024-09-24 19:28:46 +0200 | |
---|---|---|
committer | 2024-09-24 17:28:46 +0000 | |
commit | 713e73300cc4e3cf5047edd4fba6eab9a8b92e75 (patch) | |
tree | bd35f53cb31093c49f4e4ef9cec442ed8131a03d /internal/typeutils/internaltofrontend.go | |
parent | [chore] Roll otel deps back to `v1.29.0` / `v0.51.0` (#3337) (diff) | |
download | gotosocial-713e73300cc4e3cf5047edd4fba6eab9a8b92e75.tar.xz |
[bugfix] Fix incorrect reply shown in interaction request (#3344)
Diffstat (limited to 'internal/typeutils/internaltofrontend.go')
-rw-r--r-- | internal/typeutils/internaltofrontend.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/typeutils/internaltofrontend.go b/internal/typeutils/internaltofrontend.go index f36175eab..4e76837cd 100644 --- a/internal/typeutils/internaltofrontend.go +++ b/internal/typeutils/internaltofrontend.go @@ -2683,7 +2683,7 @@ func (c *Converter) InteractionReqToAPIInteractionReq( if req.InteractionType == gtsmodel.InteractionReply { reply, err = c.statusToAPIStatus( ctx, - req.Status, + req.Reply, requestingAcct, statusfilter.FilterContextNone, nil, // No filters. |