fix: 🐛 skip payload JSON.stringify for strings

This commit is contained in:
Julien Oculi 2023-07-12 01:06:40 +02:00
parent 93b4f23a7b
commit 55b69ba46c

View File

@ -400,7 +400,11 @@ class WebUiClient {
//Get the binding response
const response = (await this.#fnPromise(
bindingName,
payload === undefined ? '' : JSON.stringify(payload)
payload === undefined
? ''
: typeof payload === 'string'
? payload
: JSON.stringify(payload)
)) as string | void
//Handle response type (void, string or JSON value)