@bluecopa/core 0.1.12 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +1 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -4830,7 +4830,6 @@ class CentrifugoWebsocket {
|
|
|
4830
4830
|
throw new Error("Unable to connect to websocket, missing info");
|
|
4831
4831
|
}
|
|
4832
4832
|
if (!this.centrifuge) {
|
|
4833
|
-
const token = atob(this.accessToken);
|
|
4834
4833
|
this.centrifuge = new Centrifuge(
|
|
4835
4834
|
[
|
|
4836
4835
|
{
|
|
@@ -4839,7 +4838,7 @@ class CentrifugoWebsocket {
|
|
|
4839
4838
|
}
|
|
4840
4839
|
],
|
|
4841
4840
|
{
|
|
4842
|
-
token
|
|
4841
|
+
token: this.accessToken
|
|
4843
4842
|
}
|
|
4844
4843
|
);
|
|
4845
4844
|
this.centrifuge.on("connecting", () => {
|