diff options
author | 2021-09-27 17:42:20 +0200 | |
---|---|---|
committer | 2021-09-27 17:42:20 +0200 | |
commit | b3fd9c39a3a6ecdac87b27684e7dbc54ce19b312 (patch) | |
tree | ecd482e18eb6131d07a092949556fec623ec2ec7 /internal/processing/fromfederator.go | |
parent | Unblock fix (#247) (diff) | |
download | gotosocial-b3fd9c39a3a6ecdac87b27684e7dbc54ce19b312.tar.xz |
Weird notif issue (#248)
* start working on weird issue
* go fmt ./...
* more tests
Diffstat (limited to 'internal/processing/fromfederator.go')
-rw-r--r-- | internal/processing/fromfederator.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/fromfederator.go b/internal/processing/fromfederator.go index 20027f2a1..d0e340b5e 100644 --- a/internal/processing/fromfederator.go +++ b/internal/processing/fromfederator.go @@ -73,7 +73,7 @@ func (p *processor) ProcessFromFederator(ctx context.Context, federatorMsg messa return errors.New("like was not parseable as *gtsmodel.StatusFave") } - if err := p.notifyFave(ctx, incomingFave, federatorMsg.ReceivingAccount); err != nil { + if err := p.notifyFave(ctx, incomingFave); err != nil { return err } case ap.ActivityFollow: |