summaryrefslogtreecommitdiff
path: root/internal/processing/fromfederator.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-09-27 17:42:20 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-27 17:42:20 +0200
commitb3fd9c39a3a6ecdac87b27684e7dbc54ce19b312 (patch)
treeecd482e18eb6131d07a092949556fec623ec2ec7 /internal/processing/fromfederator.go
parentUnblock fix (#247) (diff)
downloadgotosocial-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.go2
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: