This commit is contained in:
apoorvlathey
2024-10-23 16:05:16 +04:00

View File

@@ -77,7 +77,7 @@ class AppCommunicator {
// @ts-expect-error Handler existence is checked in this.canHandleMessage
const response = await handler(msg);
// If response is not returned, it means the response will be send somewhere else
// If response is not returned, it means the response will be sent somewhere else
if (typeof response !== "undefined") {
this.send(response, msg.data.id);
}