mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-31 13:54:27 +01:00
packages/turso-serverless: Fix blob type handling
This commit is contained in:
@@ -147,7 +147,7 @@ export function decodeValue(value: Value, safeIntegers: boolean = false): any {
|
||||
for (let i = 0; i < binaryString.length; i++) {
|
||||
bytes[i] = binaryString.charCodeAt(i);
|
||||
}
|
||||
return bytes;
|
||||
return Buffer.from(bytes);
|
||||
}
|
||||
return null;
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user