This commit is contained in:
Mint 2022-08-23 23:37:22 +03:00
parent 1b75c3b4bc
commit 11677321ab

View file

@ -112,7 +112,7 @@ conn = sqlite3.connect("blocks.db")
c = conn.cursor()
c.execute(
"select domain, software from instances where software in ('pleroma', 'mastodon')"
"select domain, software from instances where software in ('pleroma', 'mastodon', 'friendica')"
)
for blocker, software in c.fetchall():