1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-14 06:25:52 +02:00

retry no key

This commit is contained in:
tamaina
2024-03-09 10:24:55 +00:00
parent 74c8f0a483
commit 6907b6505a

View File

@@ -103,7 +103,9 @@ export class InboxProcessorService {
// publicKey がなくても終了 // publicKey がなくても終了
if (authUser.key == null) { if (authUser.key == null) {
throw new Bull.UnrecoverableError('skip: failed to resolve user publicKey'); // publicKeyがないのはpublicKeyの変更主にmain→ed25519
// 対応しきれていない場合があるためリトライする
throw new Error('skip: failed to resolve user publicKey');
} }
// HTTP-Signatureの検証 // HTTP-Signatureの検証