summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/kernel/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/remote/activitypub/kernel/index.ts')
-rw-r--r--src/remote/activitypub/kernel/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/kernel/index.ts b/src/remote/activitypub/kernel/index.ts
index abf5a436c0..ff75f80299 100644
--- a/src/remote/activitypub/kernel/index.ts
+++ b/src/remote/activitypub/kernel/index.ts
@@ -66,6 +66,6 @@ async function performOneActivity(actor: IRemoteUser, activity: IObject): Promis
} else if (isFlag(activity)) {
await flag(actor, activity);
} else {
- apLogger.warn(`unknown activity type: ${(activity as any).type}`);
+ apLogger.warn(`unrecognized activity type: ${(activity as any).type}`);
}
}