From c4798d7803dbef6d0b0d4f26776c1df8955cb6fd Mon Sep 17 00:00:00 2001 From: usbharu <64310155+usbharu@users.noreply.github.com> Date: Thu, 7 Dec 2023 16:02:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20#195=20ActivityPubProcessor=20not=20foun?= =?UTF-8?q?d.=20=E3=81=AE=E4=BE=8B=E5=A4=96=E3=83=A1=E3=83=83=E3=82=BB?= =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=82=92=E3=82=8F=E3=81=8B=E3=82=8A=E3=82=84?= =?UTF-8?q?=E3=81=99=E3=81=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hideout/activitypub/service/inbox/InboxJobProcessor.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/dev/usbharu/hideout/activitypub/service/inbox/InboxJobProcessor.kt b/src/main/kotlin/dev/usbharu/hideout/activitypub/service/inbox/InboxJobProcessor.kt index 301ac7ce..ec25c727 100644 --- a/src/main/kotlin/dev/usbharu/hideout/activitypub/service/inbox/InboxJobProcessor.kt +++ b/src/main/kotlin/dev/usbharu/hideout/activitypub/service/inbox/InboxJobProcessor.kt @@ -106,7 +106,7 @@ class InboxJobProcessor( if (activityPubProcessor == null) { logger.warn("ActivityType {} is not support.", param.type) - throw IllegalStateException("ActivityPubProcessor not found.") + throw IllegalStateException("ActivityPubProcessor not found. type: ${param.type}") } val value = objectMapper.treeToValue(jsonNode, activityPubProcessor.type())