fix: unsupported url needs to be a real but dummy one
This commit is contained in:
parent
2ef91a4d9c
commit
17ff5fd96b
|
@ -462,7 +462,7 @@ export class P2PService {
|
||||||
}
|
}
|
||||||
|
|
||||||
async connectToNode(connectionUris: URL[]): Promise<void> {
|
async connectToNode(connectionUris: URL[]): Promise<void> {
|
||||||
const unsupported = new URL("");
|
const unsupported = new URL("http://0.0.0.0");
|
||||||
unsupported.protocol = "unsupported";
|
unsupported.protocol = "unsupported";
|
||||||
|
|
||||||
const connectionUri =
|
const connectionUri =
|
||||||
|
|
Loading…
Reference in New Issue