fix(federation): 🐛 Fix incorrect property in Delete

This commit is contained in:
Jesse Wierzbinski 2024-10-24 17:27:56 +02:00
parent c9a79a48da
commit f8fe1305cb
No known key found for this signature in database

View file

@ -177,7 +177,7 @@ export const DeleteSchema = EntitySchema.extend({
type: z.literal("Delete"),
author: z.string().url().nullable(),
deleted_type: z.string(),
target: z.string().url(),
deleted: z.string().url(),
});
export const FollowSchema = EntitySchema.extend({