From 1432087edfa66db184b03efadf54ef57734b81db Mon Sep 17 00:00:00 2001 From: Fishcake Date: Sun, 20 Aug 2023 10:08:56 +0900 Subject: [PATCH] add nostr event 27235 (nip-98) Closes: https://github.com/damus-io/damus/pull/1471 Signed-off-by: William Casarin --- damus/Models/HomeModel.swift | 2 ++ damus/Nostr/NostrKind.swift | 1 + 2 files changed, 3 insertions(+) diff --git a/damus/Models/HomeModel.swift b/damus/Models/HomeModel.swift index 30432bd0..b0666971 100644 --- a/damus/Models/HomeModel.swift +++ b/damus/Models/HomeModel.swift @@ -188,6 +188,8 @@ class HomeModel { break case .nwc_response: handle_nwc_response(ev, relay: relay_id) + case .http_auth: + break } } diff --git a/damus/Nostr/NostrKind.swift b/damus/Nostr/NostrKind.swift index 680eebdb..217d0978 100644 --- a/damus/Nostr/NostrKind.swift +++ b/damus/Nostr/NostrKind.swift @@ -23,4 +23,5 @@ enum NostrKind: UInt32, Codable { case zap_request = 9734 case nwc_request = 23194 case nwc_response = 23195 + case http_auth = 27235 }