From 9e16f2faa789a5a6fcd923b705328a5306cdeb39 Mon Sep 17 00:00:00 2001 From: Rolands Date: Wed, 7 Jan 2026 10:52:41 +0200 Subject: [PATCH] fix last --- core/core-client.ts | 1 - core/package-lock.json | 4 ++-- core/package.json | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/core/core-client.ts b/core/core-client.ts index 43a265c..74ca662 100644 --- a/core/core-client.ts +++ b/core/core-client.ts @@ -557,7 +557,6 @@ export class SocioClient extends LogHandler { //update local cache too, if the server accepted the change. This is important, because the server might have validation logic that rejects the set, // but also that prop might have set to not emit to sender, so this client receiving diffs wouldnt have its own val updates. const res = await (prom as Promise); //wait for the server to ack the set - log('SetProp result:', res); if(res?.result?.success === 1){ //if success, then update local cache const prop = this.#props.get(prop_name); if(prop){ diff --git a/core/package-lock.json b/core/package-lock.json index 2533e16..0d622ed 100644 --- a/core/package-lock.json +++ b/core/package-lock.json @@ -1,12 +1,12 @@ { "name": "socio", - "version": "1.15.8", + "version": "1.15.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "socio", - "version": "1.15.8", + "version": "1.15.9", "license": "MIT", "dependencies": { "@msgpack/msgpack": "^3.1.2", diff --git a/core/package.json b/core/package.json index c197948..5f0bc18 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "socio", - "version": "1.15.8", + "version": "1.15.9", "description": "A WebSocket Real-Time Communication (RTC) API framework.", "main": "./dist/core.js", "type": "module",