]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 22 May 2023 04:59:42 +0000 (06:59 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 22 May 2023 04:59:42 +0000 (06:59 +0200)
- both isn't fully supported, only peer-disovery works

fetch_blocks.py

index a0a302020e00e7b39f8cd71225c79cb5128d9579..b8cab866b83c3bac6f7ae9bf50d68478224c4e51 100644 (file)
@@ -279,9 +279,11 @@ for blocker, software in fba.cursor.fetchall():
             elif software == "misskey":
                 json = fba.get_misskey_blocks(blocker)
             elif software == "bookwyrm":
-                json = fba.get_bookwyrm_blocks(blocker)
+                print("WARNING: bookwyrm is not fully supported for fetching blacklist!", blocker)
+                #json = fba.get_bookwyrm_blocks(blocker)
             elif software == "takahe":
-                json = fba.get_takahe_blocks(blocker)
+                print("WARNING: takahe is not fully supported for fetching blacklist!", blocker)
+                #json = fba.get_takahe_blocks(blocker)
 
             for block_level, blocks in json.items():
                 # NOISY-DEBUG: print("DEBUG: blocker,block_level,blocks():", blocker, block_level, len(blocks))