mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Bridge - Fix send raw size
This commit is contained in:
parent
d5a82f98bf
commit
4116ec7581
File diff suppressed because it is too large
Load Diff
@ -449,8 +449,9 @@ class WebuiBridge {
|
|||||||
const functionName: string = this.#getDataStrFromPacket(buffer8, this.#PROTOCOL_DATA);
|
const functionName: string = this.#getDataStrFromPacket(buffer8, this.#PROTOCOL_DATA);
|
||||||
// Get the raw data
|
// Get the raw data
|
||||||
const rawDataIndex: number = this.#PROTOCOL_DATA + functionName.length + 1;
|
const rawDataIndex: number = this.#PROTOCOL_DATA + functionName.length + 1;
|
||||||
const userRawData = buffer8.subarray(rawDataIndex);
|
const rawDataSize: number = (buffer8.length - rawDataIndex) - 1;
|
||||||
if (this.#log) console.log(`WebUI -> CMD -> Send Raw ${buffer8.length} bytes to [${functionName}()]`);
|
const userRawData = buffer8.subarray(rawDataIndex, (rawDataIndex + rawDataSize));
|
||||||
|
if (this.#log) console.log(`WebUI -> CMD -> Received Raw ${rawDataSize} bytes for [${functionName}()]`);
|
||||||
// Call the user function, and pass the raw data
|
// Call the user function, and pass the raw data
|
||||||
if (typeof window[functionName] === 'function') window[functionName](userRawData);
|
if (typeof window[functionName] === 'function') window[functionName](userRawData);
|
||||||
else await AsyncFunction(functionName + '(userRawData)')();
|
else await AsyncFunction(functionName + '(userRawData)')();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user