mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-14 06:45:58 +08:00
fix: the error occurring when passing inputs on iOS devices and some … (#16534)
This commit is contained in:
parent
ae5d2ecf48
commit
35bafb3235
@ -13,8 +13,9 @@ async function decodeBase64AndDecompress(base64String: string) {
|
|||||||
async function getProcessedInputsFromUrlParams(): Promise<Record<string, any>> {
|
async function getProcessedInputsFromUrlParams(): Promise<Record<string, any>> {
|
||||||
const urlParams = new URLSearchParams(window.location.search)
|
const urlParams = new URLSearchParams(window.location.search)
|
||||||
const inputs: Record<string, any> = {}
|
const inputs: Record<string, any> = {}
|
||||||
|
const entriesArray = Array.from(urlParams.entries())
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
urlParams.entries().map(async ([key, value]) => {
|
entriesArray.map(async ([key, value]) => {
|
||||||
inputs[key] = await decodeBase64AndDecompress(decodeURIComponent(value))
|
inputs[key] = await decodeBase64AndDecompress(decodeURIComponent(value))
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user