a digital entity named phi that roams bsky phi.zzstoatzz.io
2
fork

Configure Feed

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

fix: strip legacy bio suffixes so new format applies on upgrade

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz 947b18d2 e986aae0

+3 -1
+3 -1
src/bot/core/profile_manager.py
··· 10 10 _SOURCE_LINK = "\n\nsource code: https://tangled.sh/zzstoatzz.io/bot" 11 11 _ONLINE_SUFFIX = f"{_SOURCE_LINK}\n\n🟢 user memory, world memory, thread context, atproto records, publication search, post search, trending" 12 12 _OFFLINE_SUFFIX = f"{_SOURCE_LINK}\n\n🔴 offline" 13 - _ALL_SUFFIXES = [_ONLINE_SUFFIX, _OFFLINE_SUFFIX] 13 + _LEGACY_ONLINE = "\n\n🟢 user memory, world memory, thread context, atproto records, publication search, post search, trending" 14 + _LEGACY_OFFLINE = " • 🔴 offline" 15 + _ALL_SUFFIXES = [_ONLINE_SUFFIX, _OFFLINE_SUFFIX, _LEGACY_ONLINE, _LEGACY_OFFLINE] 14 16 15 17 16 18 def _read_profile(client: Client) -> Any: