Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

web: remove blob size limits on our side

-1
-1
web/src/lib/writes.ts
··· 140 140 const out: Attachment[] = []; 141 141 for (const file of files) { 142 142 if (file.size === 0) continue; 143 - if (file.size > 1_000_000) throw new Error(`${file.name} exceeds 1MB`); 144 143 const blob = await uploadBlob(rpc, file); 145 144 out.push({ 146 145 file: blob as unknown as Attachment["file"],