Handle empty handles

main
Bob Mottram 2025-12-14 18:25:20 +00:00
parent ebfe4317aa
commit 523e98f282
1 changed files with 2 additions and 0 deletions

View File

@ -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: