Slightly tweak notifications function

This commit is contained in:
Jon Staab
2026-02-10 17:04:21 -08:00
parent 72f2effda4
commit 1076e8531c
+4 -6
View File
@@ -345,14 +345,12 @@ class CapacitorNotifications implements IPushAdapter {
String(hash(relay + key + device.get()))
_getPushUrl = async (url: string) => {
let relay = await loadRelay(url)
for (const candidate of [url, PUSH_BRIDGE]) {
const relay = await loadRelay(candidate)
if (!relay?.self || !relay?.supported_nips?.map(String)?.includes("9a")) {
relay = await loadRelay(PUSH_BRIDGE)
if (relay?.supported_nips?.map(String)?.includes("9a")) {
return candidate
}
if (relay?.self) {
return relay.url
}
}