We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0763b58 commit d29895bCopy full SHA for d29895b
robosats/middleware.py
@@ -123,11 +123,6 @@ def __call__(self, request):
123
).replace("Private ", "")
124
nostr_pubkey = request.META.get("NOSTR_PUBKEY", "").replace("Nostr ", "")
125
126
- # Some legacy (pre-federation) clients will still send keys as cookies
127
- if public_key == "" or encrypted_private_key == "":
128
- public_key = request.COOKIES.get("public_key")
129
- encrypted_private_key = request.COOKIES.get("encrypted_private_key", "")
130
-
131
if not public_key or not encrypted_private_key or not nostr_pubkey:
132
return JsonResponse(
133
{
0 commit comments