Fixed issue with send_message

This commit is contained in:
Justin Ferrari 2023-03-02 21:22:08 -05:00
parent 0215a03988
commit fdde6aeffe

View File

@ -648,14 +648,13 @@ class WebBrowser extends LitElement {
};
const getSendChatResponse = (res) => {
if (res === true) {
if (res.signature) {
return res
} else if (res.error) {
throw new Error(res.message);
} else {
throw new Error('ERROR: Could not send message');
}
};
const chatResponse = await sendMessageRequest();