@scrypted/server 0.7.12 → 0.7.13

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrypted/server",
3
- "version": "0.7.12",
3
+ "version": "0.7.13",
4
4
  "description": "",
5
5
  "dependencies": {
6
6
  "@mapbox/node-pre-gyp": "^1.0.10",
@@ -44,7 +44,7 @@ class StreamPipeReader:
44
44
  def readBlocking(self, n):
45
45
  b = bytes(0)
46
46
  while len(b) < n:
47
- self.conn.poll()
47
+ self.conn.poll(None)
48
48
  add = os.read(self.conn.fileno(), n - len(b))
49
49
  if not len(add):
50
50
  raise Exception('unable to read requested bytes')