From 3d9ea0389401fd022d22f85d17921bd0ae6962cf Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Wed, 19 Jun 2024 13:10:03 +0200 Subject: [PATCH] fix a bug in the bot that prevented it from using multple inbox relays --- nostr_dvm/bot.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nostr_dvm/bot.py b/nostr_dvm/bot.py index 1dc072d..31d3350 100644 --- a/nostr_dvm/bot.py +++ b/nostr_dvm/bot.py @@ -617,8 +617,9 @@ class Bot: relay_list = ["relays"] for relay in self.dvm_config.RELAY_LIST: relay_list.append(relay) - relays = Tag.parse(relay_list) - tags.append(relays) + + relays = Tag.parse(relay_list) + tags.append(relays) return tags