Skip to content

Commit

Permalink
chore: fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Aug 8, 2023
1 parent f605b9d commit 383ea43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adapters/plain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export async function _handlePlainRequest(app: App, request: PlainRequest) {
status: nodeRes.statusCode,
statusText: nodeRes.statusMessage,
headers: _normalizeUnenvHeaders(nodeRes._headers),
body: nodeRes._data,
body: (nodeRes as any)._data,
};
}

Expand Down

0 comments on commit 383ea43

Please sign in to comment.