diff options
author | 2024-02-19 04:48:20 +0100 | |
---|---|---|
committer | 2024-02-19 03:48:20 +0000 | |
commit | a314d2b539804a31e602774196676e2d0089b8dc (patch) | |
tree | 9b68bb5176cf2b8f7909bf0fa02117f8c270d9b9 /internal/processing/processor.go | |
parent | [chore] Comment out silly, frequently-failing `GetStatusTwice` test (#2656) (diff) | |
download | gotosocial-a314d2b539804a31e602774196676e2d0089b8dc.tar.xz |
[bugfix] Refactor parse mention, fix local mention bug (#2657)
* [bugfix] Refactor parse mention, fix local mention bug
* originAccount -> originAcct
Diffstat (limited to 'internal/processing/processor.go')
-rw-r--r-- | internal/processing/processor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/processor.go b/internal/processing/processor.go index 6ac7a6bf0..d4ef41bea 100644 --- a/internal/processing/processor.go +++ b/internal/processing/processor.go @@ -151,7 +151,7 @@ func NewProcessor( emailSender email.Sender, ) *Processor { var ( - parseMentionFunc = GetParseMentionFunc(state.DB, federator) + parseMentionFunc = GetParseMentionFunc(state, federator) filter = visibility.NewFilter(state) ) |