diff --git a/src/activity.ts b/src/activity.ts index ecdfc9e..3a121f5 100644 --- a/src/activity.ts +++ b/src/activity.ts @@ -207,7 +207,7 @@ export const sendAccept = async (user: User, followId: string, follower: string, const result = await signedFetch(inbox, init, init2); console.log("response status:", result.status); - const response = streamToString(result.body as ReadableStream); + const response = await streamToString(result.body as ReadableStream); console.log("body:", response); };