diff --git a/damus/Util/WalletConnect.swift b/damus/Util/WalletConnect.swift index 3ce5ffbb..c3ffc399 100644 --- a/damus/Util/WalletConnect.swift +++ b/damus/Util/WalletConnect.swift @@ -36,7 +36,8 @@ struct WalletConnectURL: Equatable { } init?(str: String) { - guard let url = URL(string: str), url.scheme == "nostrwalletconnect", + guard let url = URL(string: str), + url.scheme == "nostrwalletconnect" || url.scheme == "nostr+walletconnect", let pk = url.host, pk.utf8.count == 64, let components = URLComponents(url: url, resolvingAgainstBaseURL: true), let items = components.queryItems,