From 8f433a5f1a6f8f6134d36f843bce9a6cf87cd128 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Thu, 26 Mar 2026 19:14:38 +0000 Subject: [PATCH] [GitHub Actions] Updated ubuntu-24.04-arm binaries --- source_commit | 2 +- uws.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source_commit b/source_commit index b7cbc3a7..5888dff9 100644 --- a/source_commit +++ b/source_commit @@ -1 +1 @@ -54e822d6f7bf7377f6367a772e02d5c3914c1b84 +1c03fa0b7911bcf1aedeef92df9a5e1e17d30089 diff --git a/uws.js b/uws.js index e67bae1d..d5dcdf59 100644 --- a/uws.js +++ b/uws.js @@ -35,6 +35,7 @@ const toUint8Array = (value) => { if (value === undefined) return new Uint8Array(0); else if (typeof value === 'string') return textEncoder.encode(value); else if (value instanceof ArrayBuffer) return new Uint8Array(value); + else if (value instanceof SharedArrayBuffer) return new Uint8Array(value); else return new Uint8Array(value.buffer, value.byteOffset, value.byteLength); };