]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sat, 20 May 2023 12:26:02 +0000 (14:26 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 20 May 2023 12:26:02 +0000 (14:26 +0200)
- only fetch these, others are WIP

fetch_instances.py

index e1882cc51b8bcac506d7408b5a47e02670e0c14b..fb1ba01f53a6a7d7bba123ec76e32b0269d85be8 100644 (file)
@@ -60,7 +60,7 @@ fetch_instances(instance)
 
 # Loop through some instances
 fba.c.execute(
-    "SELECT domain FROM instances WHERE software IS NOT NULL AND (last_nodeinfo IS NULL OR last_nodeinfo < ?) ORDER BY rowid DESC", [time.time() - fba.config["recheck_instance"]]
+    "SELECT domain FROM instances WHERE software IN ('pleroma', 'mastodon', 'friendica', 'misskey', 'gotosocial') AND (last_nodeinfo IS NULL OR last_nodeinfo < ?) ORDER BY rowid DESC", [time.time() - fba.config["recheck_instance"]]
 )
 
 for instance in fba.c.fetchall():