diff options
author | 2021-09-14 12:23:56 +0200 | |
---|---|---|
committer | 2021-09-14 12:23:56 +0200 | |
commit | 2e5dcc2929d6e6b22f370bf1b83c54d03ac1cd43 (patch) | |
tree | 3d3ce087220f8eb120e9fb132731fd30987d9922 /internal/federation/dereferencing/announce.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/federation/dereferencing/announce.go')
-rw-r--r-- | internal/federation/dereferencing/announce.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/federation/dereferencing/announce.go b/internal/federation/dereferencing/announce.go index f0b4c9e9a..edab8c6ca 100644 --- a/internal/federation/dereferencing/announce.go +++ b/internal/federation/dereferencing/announce.go @@ -46,7 +46,7 @@ func (d *deref) DereferenceAnnounce(ctx context.Context, announce *gtsmodel.Stat return fmt.Errorf("DereferenceAnnounce: error dereferencing thread of boosted status: %s", err) } - boostedStatus, _, _, err := d.GetRemoteStatus(ctx, requestingUsername, boostedStatusURI, false, false, false) + boostedStatus, _, _, err := d.GetRemoteStatus(ctx, requestingUsername, boostedStatusURI, false, true) if err != nil { return fmt.Errorf("DereferenceAnnounce: error dereferencing remote status with id %s: %s", announce.BoostOf.URI, err) } |