From a95e1fb0294545f5148d849829a4bcf459cc20db Mon Sep 17 00:00:00 2001 From: Holly McFarland Date: Sat, 29 Jan 2022 18:44:43 -0500 Subject: [PATCH] Clarify reply_visibility comment --- mtgcardlookup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mtgcardlookup.py b/mtgcardlookup.py index 63d075f..87c9fa3 100755 --- a/mtgcardlookup.py +++ b/mtgcardlookup.py @@ -227,9 +227,9 @@ async def handle_status(c, status): # Reply unlisted or at the same visibility as the parent, whichever is # more restrictive - # I realized after writing this that I don't /think/ it ever matters? - # I think replies behave the same on public and unlisted. But I'm not 100% - # sure so it stays. + # This doesn't matter for, say, Mastodon. But apparently some fedi + # fedi displays public replies in public timelines? And even if that's + # wrong, it doesn't hurt to keep it this way, just in case. reply_visibility = min(('unlisted', status_visibility), key=['direct', 'private', 'unlisted', 'public'].index) media_ids = None