mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
fix: 🐛 skip payload JSON.stringify for strings
This commit is contained in:
parent
93b4f23a7b
commit
55b69ba46c
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user