diff options
author | Chocobozzz <me@florianbigard.com> | 2022-07-18 11:55:13 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-07-18 11:55:13 +0200 |
commit | 1cc9774668827c1255e4cd0775cb781c7f73051c (patch) | |
tree | 6ee5099e069e35ca100e74ac1de54ba94113a9b3 /server/lib/activitypub/actors | |
parent | 42b40636991b97fe818007fab19091764fc5db73 (diff) | |
download | PeerTube-1cc9774668827c1255e4cd0775cb781c7f73051c.tar.gz PeerTube-1cc9774668827c1255e4cd0775cb781c7f73051c.tar.zst PeerTube-1cc9774668827c1255e4cd0775cb781c7f73051c.zip |
Fix incorrect error logs
Diffstat (limited to 'server/lib/activitypub/actors')
-rw-r--r-- | server/lib/activitypub/actors/refresh.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/actors/refresh.ts b/server/lib/activitypub/actors/refresh.ts index 8ce2cd5d9..6d8428d66 100644 --- a/server/lib/activitypub/actors/refresh.ts +++ b/server/lib/activitypub/actors/refresh.ts | |||
@@ -75,7 +75,7 @@ async function doRefresh <T extends MActorFull | MActorAccountChannelId> (option | |||
75 | function getActorUrl (actor: MActorFull) { | 75 | function getActorUrl (actor: MActorFull) { |
76 | return getUrlFromWebfinger(actor.preferredUsername + '@' + actor.getHost()) | 76 | return getUrlFromWebfinger(actor.preferredUsername + '@' + actor.getHost()) |
77 | .catch(err => { | 77 | .catch(err => { |
78 | logger.warn('Cannot get actor URL from webfinger, keeping the old one.', err) | 78 | logger.warn('Cannot get actor URL from webfinger, keeping the old one.', { err }) |
79 | return actor.url | 79 | return actor.url |
80 | }) | 80 | }) |
81 | } | 81 | } |