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.

tui/home: better error handling

+6 -2
+6 -2
tui/screens/home.py
··· 1 1 import asyncio 2 2 import random 3 3 4 + import httpx 4 5 from textual import work 5 6 from textual.app import ComposeResult 6 7 from textual.containers import Vertical ··· 88 89 severity="warning", 89 90 ) 90 91 return 92 + except httpx.HTTPStatusError: 93 + pass 91 94 except Exception: 92 - pass 95 + self.notify("Could not check for existing BBS.", severity="error") 96 + return 93 97 94 98 from tui.screens.sysop.create import SysopCreateScreen 95 99 ··· 181 185 discover_list.index = 0 182 186 183 187 except Exception: 184 - pass 188 + self.notify("Could not load discover list.", severity="error")