diff --git a/src/lib/components/RPCMenu.svelte b/src/lib/components/RPCMenu.svelte index 3b3412f..6355d4d 100644 --- a/src/lib/components/RPCMenu.svelte +++ b/src/lib/components/RPCMenu.svelte @@ -27,7 +27,11 @@ if (!rpcUrlValue) { currentRPC.set("https://api.mainnet-beta.solana.com"); } - if (!rpcUrlValue.startsWith("https://") && rpcUrlValue !== "") { + if ( + rpcUrlValue !== "" && + !rpcUrlValue.startsWith("http://") && + !rpcUrlValue.startsWith("https://") + ) { rpcUrlValue = "https://" + rpcUrlValue; } currentRPC.set(rpcUrlValue);