From ba67edf5cc964bb13a81af1a2e4768823e95a31a Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Sun, 23 Jul 2023 20:50:56 +0200
Subject: [PATCH] Continued: - fetch_fedipact() belongs to beach.city, those
 who have their blocklist   "hidden" in a federated account

---
 fba/commands.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fba/commands.py b/fba/commands.py
index e781351..6974862 100644
--- a/fba/commands.py
+++ b/fba/commands.py
@@ -761,7 +761,7 @@ def fetch_fba_rss(args: argparse.Namespace) -> int:
 
         logger.debug("rss[]='%s'", type(rss))
         for item in rss.items:
-            logger.debug("item='%s'", item)
+            logger.debug("item[%s]='%s'", type(item), item)
             domain = tidyup.domain(item.link.split("=")[1])
 
             logger.debug("domain='%s' - AFTER!", domain)
@@ -1235,7 +1235,7 @@ def fetch_fedipact(args: argparse.Namespace) -> int:
                 continue
 
             logger.info("Fetching domain='%s' ...", domain)
-            federation.fetch_instances(domain, None, None, inspect.currentframe().f_code.co_name)
+            federation.fetch_instances(domain, "beach.city", None, inspect.currentframe().f_code.co_name)
 
     logger.debug("Success! - EXIT!")
     return 0
-- 
2.39.5