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 }