forgot await

This commit is contained in:
Moon Man 2023-12-30 23:56:06 -05:00
parent f256889224
commit 53faaf4887
1 changed files with 1 additions and 1 deletions

View File

@ -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);
};