@scrypted/server 0.70.0 → 0.72.0
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/package.json +1 -1
- package/python/rpc.py +1 -1
package/package.json
CHANGED
package/python/rpc.py
CHANGED
@@ -374,7 +374,7 @@ class RpcPeer:
|
|
374
374
|
return RpcPeer.deserializeError(__serialized_value)
|
375
375
|
|
376
376
|
if __remote_proxy_id:
|
377
|
-
weakref = self.remoteWeakProxies.get(
|
377
|
+
weakref = self.remoteWeakProxies.get(__remote_proxy_id, None)
|
378
378
|
proxy = weakref() if weakref else None
|
379
379
|
if not proxy:
|
380
380
|
proxy = self.newProxy(__remote_proxy_id, __remote_constructor_name,
|