Browse Source

feat: publish favorite relays event to big relays

imwald
codytseng 11 months ago
parent
commit
69209957e4
  1. 2
      src/providers/NostrProvider/index.tsx

2
src/providers/NostrProvider/index.tsx

@ -454,7 +454,7 @@ export function NostrProvider({ children }: { children: React.ReactNode }) { @@ -454,7 +454,7 @@ export function NostrProvider({ children }: { children: React.ReactNode }) {
})
}
}
if (draftEvent.kind === kinds.RelayList) {
if ([kinds.RelayList, ExtendedKind.FAVORITE_RELAYS].includes(draftEvent.kind)) {
additionalRelayUrls.push(...BIG_RELAY_URLS)
}

Loading…
Cancel
Save