add extra webrtc relay

This commit is contained in:
hzrd149 2024-07-22 22:04:50 -05:00
parent 7b45e6f296
commit 9cb18556dc
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export const CopyIconButton = ({ value, icon, ...props }: CopyIconButtonProps) =
return (
<IconButton
icon={copied ? <CheckIcon /> : icon || <CopyToClipboardIcon />}
icon={copied ? <CheckIcon boxSize="1.5em" /> : icon || <CopyToClipboardIcon boxSize="1.2em" />}
onClick={() => {
const v: string | undefined = typeof value === "function" ? value() : value;

View File

@ -99,7 +99,7 @@ class WebRtcRelaysService {
const signer = new SimpleSigner(localSettings.webRtcLocalIdentity.value);
const webRtcRelaysService = new WebRtcRelaysService(
new NostrWebRtcBroker(signer, new SimplePool(), ["wss://nos.lol"]),
new NostrWebRtcBroker(signer, new SimplePool(), ["wss://nos.lol", "wss://nostrue.com"]),
localRelay as AbstractRelay | null,
);