diff options
author | 2021-09-14 12:23:56 +0200 | |
---|---|---|
committer | 2021-09-14 12:23:56 +0200 | |
commit | 2e5dcc2929d6e6b22f370bf1b83c54d03ac1cd43 (patch) | |
tree | 3d3ce087220f8eb120e9fb132731fd30987d9922 /internal/processing/search.go | |
parent | add ap logo to readme (#228) (diff) | |
download | gotosocial-2e5dcc2929d6e6b22f370bf1b83c54d03ac1cd43.tar.xz |
Fix mentions not notifying (#230)
* set default privacy for new accounts
* teshts
* found it
* tiny change
* aaaa
Diffstat (limited to 'internal/processing/search.go')
-rw-r--r-- | internal/processing/search.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/search.go b/internal/processing/search.go index 85da0d83f..2fb1f6062 100644 --- a/internal/processing/search.go +++ b/internal/processing/search.go @@ -130,7 +130,7 @@ func (p *processor) searchStatusByURI(ctx context.Context, authed *oauth.Auth, u // we don't have it locally so dereference it if we're allowed to if resolve { - status, _, _, err := p.federator.GetRemoteStatus(ctx, authed.Account.Username, uri, true, false, false) + status, _, _, err := p.federator.GetRemoteStatus(ctx, authed.Account.Username, uri, true, true) if err == nil { if err := p.federator.DereferenceRemoteThread(ctx, authed.Account.Username, uri); err != nil { // try to deref the thread while we're here |