@live-change/framework 0.9.183 → 0.9.185

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.
Files changed (2) hide show
  1. package/lib/utils.js +2 -3
  2. package/package.json +4 -4
package/lib/utils.js CHANGED
@@ -228,10 +228,9 @@ function prefixRange({ gt, lt, gte, lte, limit, reverse }, prefix, from = "") {
228
228
  function getPrefix(id) {
229
229
  if(id.length > from.length) {
230
230
  if(id.slice(0, from.length) !== from) {
231
- console.error("ID:", id, "does not start with", from)
232
- throw new Error("id does not match prefix")
231
+ console.error("ID:", id, "does not start with", from)
233
232
  }
234
- id = id.slice(from.length)
233
+ id = id.slice(from.length)
235
234
  }
236
235
  if(id === '') return `${prefix}:`
237
236
  if(id === '\xFF\xFF\xFF\xFF') return `${prefix}:\xFF\xFF\xFF\xFF`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/framework",
3
- "version": "0.9.183",
3
+ "version": "0.9.185",
4
4
  "description": "Live Change Framework - ultimate solution for real time mobile/web apps",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,11 +22,11 @@
22
22
  },
23
23
  "homepage": "https://github.com/live-change/live-change-stack",
24
24
  "devDependencies": {
25
- "@live-change/dao": "^0.9.183",
26
- "@live-change/uid": "^0.9.183",
25
+ "@live-change/dao": "^0.9.185",
26
+ "@live-change/uid": "^0.9.185",
27
27
  "typedoc": "0.28.3",
28
28
  "typedoc-plugin-markdown": "^4.6.3",
29
29
  "typedoc-plugin-rename-defaults": "^0.7.3"
30
30
  },
31
- "gitHead": "a61bc04560d627571a9c511b29b22357800e4927"
31
+ "gitHead": "f8f4caa3498f2dc1229e17adc1a3024dbb772b25"
32
32
  }