Lite: Fix error handling on the ASGI app (#5982)

This commit is contained in:
Yuichiro Tachibana (Tsuchiya) 2023-10-19 02:38:18 +09:00 committed by GitHub
parent a32aabaf50
commit ab1e5da557
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"@gradio/wasm": minor
---
feat:Lite: Fix error handling on the ASGI app

View File

@ -129,5 +129,5 @@ export const makeHttpRequest = (
headers: headersToASGI(request.headers)
};
asgiApp(scope, receiveFromJs, sendToJs);
asgiApp(scope, receiveFromJs, sendToJs).catch(reject);
});