Bridge - Fix send raw size

This commit is contained in:
Hassan DRAGA 2024-07-01 02:31:53 -04:00
parent d5a82f98bf
commit 4116ec7581
2 changed files with 872 additions and 861 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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)')();