From 523e98f28279c231d3b82449aa9d3a5ac3ba90db Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 14 Dec 2025 18:25:20 +0000 Subject: [PATCH] Handle empty handles --- follow.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/follow.py b/follow.py index 5129d0d31..f57ef2fa9 100644 --- a/follow.py +++ b/follow.py @@ -1573,6 +1573,8 @@ def remove_follower(base_dir: str, new_followers_str = '' found = False for handle2 in followers_list: + if not handle2: + continue if handle2.lower() != handle: new_followers_str += handle2 + '\n' else: