fix a bug in the bot that prevented it from using multple inbox relays

This commit is contained in:
Believethehype
2024-06-19 13:10:03 +02:00
parent 6009906577
commit 3d9ea03894

View File

@@ -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