Relay Settings - allow ws;// and fix add button size #305

Merged
enes merged 2 commits from 297-settings-relays-allow-ws into staging 2025-01-22 09:36:08 +00:00
Showing only changes of commit 04f1d692a4 - Show all commits

View File

@ -54,7 +54,10 @@ export const RelaysPage = () => {
const relayMap = useAppSelector((state) => state.relays?.map) const relayMap = useAppSelector((state) => state.relays?.map)
const relaysInfo = useAppSelector((state) => state.relays?.info) const relaysInfo = useAppSelector((state) => state.relays?.info)
const webSocketPrefix = 'wss://' const webSocketPrefix =
newRelayURI?.startsWith('wss://') || newRelayURI?.startsWith('ws://')
? ''
: 'wss://'
// fetch relay list from relays // fetch relay list from relays
useEffect(() => { useEffect(() => {
@ -197,7 +200,7 @@ export const RelaysPage = () => {
// Check if new relay URI is a valid string // Check if new relay URI is a valid string
if ( if (
relayURI && relayURI &&
!/^wss:\/\/[-a-zA-Z0-9@:%._\\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}/.test( !/^wss?:\/\/[-a-zA-Z0-9@:%._\\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}/.test(
relayURI relayURI
) )
) { ) {