From 25eac9d206ba18205851d266e1657e4332cf64e5 Mon Sep 17 00:00:00 2001 From: koalasat Date: Tue, 22 Jul 2025 17:50:05 +0200 Subject: [PATCH] Fix nostr --- api/nostr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/nostr.py b/api/nostr.py index 32b9d158..d2e7b4d3 100644 --- a/api/nostr.py +++ b/api/nostr.py @@ -64,7 +64,7 @@ class Nostr: await client.send_private_msg(robot.nostr_pubkey, text, tags) print("Nostr NOTIFICATION event sent") - def initialize_client(self, keys): + async def initialize_client(self, keys): # Initialize with coordinator Keys signer = NostrSigner.keys(keys) client = Client(signer)