From 78e5c42fbd0ac8464a9d874a997331835335adc0 Mon Sep 17 00:00:00 2001 From: wearr <99224452+wearrrrr@users.noreply.github.com> Date: Wed, 3 Apr 2024 16:30:42 -0500 Subject: [PATCH] change wss to https in the readme for bare transport Bare transport only accepts a bare server on http(s) (at least as of now), but the readme specifies a wss url. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 71adba0..85ee29f 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ To switch between transports, use the `SetTransport` function. import { SetTransport } from '@mercuryworkshop/bare-mux'; SetTransport("EpxMod.EpoxyClient", { wisp: "wss://wisp.mercurywork.shop" }); -SetTransport("BareMod.BareClient", "wss://some-bare-server.com" }); +SetTransport("BareMod.BareClient", "https://some-bare-server.com" }); ``` If not using a bundler, include the `bare.cjs` file in releases and call `BareMux.SetTransport`.