diff options
Diffstat (limited to 'internal/ap/extract.go')
-rw-r--r-- | internal/ap/extract.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ap/extract.go b/internal/ap/extract.go index baffd4bf2..1ee0e008e 100644 --- a/internal/ap/extract.go +++ b/internal/ap/extract.go @@ -581,7 +581,7 @@ func ExtractMention(i Mentionable) (*gtsmodel.Mention, error) { if hrefProp == nil || !hrefProp.IsIRI() { return nil, errors.New("no href prop") } - mention.MentionedAccountURI = hrefProp.GetIRI().String() + mention.TargetAccountURI = hrefProp.GetIRI().String() return mention, nil } |