diff --git a/src/app/channel/components/messages/item.tsx b/src/app/channel/components/messages/item.tsx index 7a968807..48b906f9 100644 --- a/src/app/channel/components/messages/item.tsx +++ b/src/app/channel/components/messages/item.tsx @@ -14,7 +14,7 @@ export default function ChannelMessageItem({ data }: { data: any }) {
- {data.hide ? [hided message] : content} + {data.hide ? [hided message] : content}
diff --git a/src/stores/constants.tsx b/src/stores/constants.tsx index 81222042..3c733c17 100644 --- a/src/stores/constants.tsx +++ b/src/stores/constants.tsx @@ -12,15 +12,15 @@ export const IMGPROXY_URL = 'https://imgproxy.iris.to/insecure'; export const METADATA_SERVICE = 'https://us.rbr.bio'; // read-only relay list -export const READONLY_RELAYS = ['wss://welcome.nostr.wine', 'wss://relay.nostr.band']; +export const READONLY_RELAYS = ['wss://welcome.nostr.wine', 'wss://relay.nostr.band/all', 'wss://relay.damus.io']; // write-only relay list export const WRITEONLY_RELAYS = ['wss://nostr.mutinywallet.com', 'wss://relay.nostr.band', 'wss://relay.damus.io']; -// full-relay list, used for inital page and chat/channel messages loading +// full-relay list export const FULL_RELAYS = [ 'wss://welcome.nostr.wine', - 'wss://relay.nostr.band', + 'wss://relay.nostr.band/all', 'wss://nostr.mutinywallet.com', 'wss://relay.damus.io', ];