working on showing single posts for users we dont know about

This commit is contained in:
2025-12-31 07:11:35 +00:00
parent ed9dfb990f
commit 63643f0f9a
17 changed files with 127 additions and 74 deletions

View File

@@ -29,7 +29,7 @@ export async function compressString(input) {
// Read the compressed data from the stream
const compressedArray = await new Response(compressionStream.readable).arrayBuffer();
// Convert the compressed data to a Uint8Array
return new Uint8Array(compressedArray);
return compressedArray;
}
// Base58 character set
// const BASE58_ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz';