mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 19:34:19 +00:00
Log handle on GetProfilePageFromHandle err
This commit is contained in:
parent
ac522ed600
commit
f9cd87ae3a
1 changed files with 1 additions and 1 deletions
2
posts.go
2
posts.go
|
@ -1180,7 +1180,7 @@ func (p *PublicPost) ActivityObject(app *App) *activitystreams.Object {
|
|||
for _, handle := range mentions {
|
||||
actorIRI, err := app.db.GetProfilePageFromHandle(app, handle)
|
||||
if err != nil {
|
||||
log.Info("Couldn't find this user locally or remotely")
|
||||
log.Info("Couldn't find user '%s' locally or remotely", handle)
|
||||
continue
|
||||
}
|
||||
mentionedUsers[handle] = actorIRI
|
||||
|
|
Loading…
Reference in a new issue