diff --git a/activitypub.go b/activitypub.go index 18307de..2b91ce0 100644 --- a/activitypub.go +++ b/activitypub.go @@ -624,14 +624,6 @@ func deleteFederatedPost(app *App, p *PublicPost, collID int64) error { } func federatePost(app *App, p *PublicPost, collID int64, isUpdate bool) error { - if debugging { - if isUpdate { - log.Info("Federating updated post!") - } else { - log.Info("Federating new post!") - } - } - // If app is private, do not federate if app.cfg.App.Private { return nil @@ -642,6 +634,14 @@ func federatePost(app *App, p *PublicPost, collID int64, isUpdate bool) error { return nil } + if debugging { + if isUpdate { + log.Info("Federating updated post!") + } else { + log.Info("Federating new post!") + } + } + actor := p.Collection.PersonObject(collID) na := p.ActivityObject(app)