From 2bdbbb274d0631a0d24e62ff9b24abde06af58f7 Mon Sep 17 00:00:00 2001 From: Bitkarrot <73979971+bitkarrot@users.noreply.github.com> Date: Sun, 13 Oct 2024 23:39:48 -0700 Subject: [PATCH] Update client_connection.py (#29) omit return none, in ref to https://github.com/lnbits/nostrrelay/issues/27 --- relay/client_connection.py | 1 - 1 file changed, 1 deletion(-) diff --git a/relay/client_connection.py b/relay/client_connection.py index 81ae79c..c8abc3a 100644 --- a/relay/client_connection.py +++ b/relay/client_connection.py @@ -130,7 +130,6 @@ class NostrClientConnection: await self._send_msg(resp_nip20) return None self.auth_pubkey = e.pubkey - return None if not self.auth_pubkey and self.config.event_requires_auth(e.kind): await self._send_msg(["AUTH", self._current_auth_challenge()])