@scrypted/server 0.7.77 → 0.7.80

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.

Potentially problematic release.


This version of @scrypted/server might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrypted/server",
3
- "version": "0.7.77",
3
+ "version": "0.7.80",
4
4
  "description": "",
5
5
  "dependencies": {
6
6
  "@mapbox/node-pre-gyp": "^1.0.10",
@@ -422,7 +422,7 @@ class PluginRemote:
422
422
  peer, peerReadLoop = await rpc_reader.prepare_peer_readloop(self.loop, rpcTransport)
423
423
  peer.onProxySerialization = lambda value, proxyId: onProxySerialization(
424
424
  value, proxyId, clusterPeerPort)
425
- future = asyncio.Future[rpc.RpcPeer]()
425
+ future: asyncio.Future[rpc.RpcPeer] = asyncio.Future()
426
426
  future.set_result(peer)
427
427
  clusterPeers[clusterPeerPort] = future
428
428