client: remove debug sideband code

This commit is contained in:
Koushik Dutta
2022-07-07 09:57:55 -07:00
parent 41da5a4af4
commit 97ee3bf148
3 changed files with 12 additions and 12 deletions

View File

@@ -1,15 +1,15 @@
{
"name": "@scrypted/client",
"version": "1.0.20",
"version": "1.0.24",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/client",
"version": "1.0.20",
"version": "1.0.24",
"license": "ISC",
"dependencies": {
"@scrypted/types": "^0.0.47",
"@scrypted/types": "^0.0.48",
"adm-zip": "^0.5.9",
"axios": "^0.25.0",
"engine.io-client": "^6.2.2",
@@ -53,9 +53,9 @@
"extraneous": true
},
"node_modules/@scrypted/types": {
"version": "0.0.47",
"resolved": "https://registry.npmjs.org/@scrypted/types/-/types-0.0.47.tgz",
"integrity": "sha512-MFL/qc7XrOpmey9ASIQkeBIrdxHlzLTmpqeRADNUH4s3lZxcQHjmpBQ+othUvoSKJ9Wx9PscK2NMZZFEhfQt3A=="
"version": "0.0.48",
"resolved": "https://registry.npmjs.org/@scrypted/types/-/types-0.0.48.tgz",
"integrity": "sha512-eNPy1OctzwAdw4frx1Z2gyRRyQusYIDVR0l2zOqFtlKIAggeyab186GVfxAJH9O5s/09VHggPM/kZOUXYGxqGw=="
},
"node_modules/@socket.io/component-emitter": {
"version": "3.1.0",
@@ -317,9 +317,9 @@
},
"dependencies": {
"@scrypted/types": {
"version": "0.0.47",
"resolved": "https://registry.npmjs.org/@scrypted/types/-/types-0.0.47.tgz",
"integrity": "sha512-MFL/qc7XrOpmey9ASIQkeBIrdxHlzLTmpqeRADNUH4s3lZxcQHjmpBQ+othUvoSKJ9Wx9PscK2NMZZFEhfQt3A=="
"version": "0.0.48",
"resolved": "https://registry.npmjs.org/@scrypted/types/-/types-0.0.48.tgz",
"integrity": "sha512-eNPy1OctzwAdw4frx1Z2gyRRyQusYIDVR0l2zOqFtlKIAggeyab186GVfxAJH9O5s/09VHggPM/kZOUXYGxqGw=="
},
"@socket.io/component-emitter": {
"version": "3.1.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/client",
"version": "1.0.20",
"version": "1.0.24",
"description": "",
"main": "dist/packages/client/src/index.js",
"scripts": {
@@ -17,7 +17,7 @@
"@types/node": "^17.0.17"
},
"dependencies": {
"@scrypted/types": "^0.0.47",
"@scrypted/types": "^0.0.48",
"adm-zip": "^0.5.9",
"axios": "^0.25.0",
"engine.io-client": "^6.2.2",

View File

@@ -122,7 +122,7 @@ export async function connectScryptedClient(options: ScryptedClientOptions): Pro
baseUrl,
});
addresses = loginCheck.addresses;
trySideband = loginCheck.scryptedCloud || true;
trySideband = loginCheck.scryptedCloud;
}
let socket: IOClientSocket;