bajo 1.2.1 → 1.2.2

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.
@@ -127,9 +127,9 @@ class BajoCore extends Plugin {
127
127
  path = parts.join('/')
128
128
  const realPath = realParts.join('/')
129
129
  let fullPath = path
130
- if (!isEmpty(qs)) fullPath += ('?' + querystring.stringify(qs))
130
+ if (!isEmpty(qs)) fullPath += ('?' + querystring.stringify(qs, null, null, { encodeURIComponent: (text) => (text) }))
131
131
  let realFullPath = realPath
132
- if (!isEmpty(qs)) realFullPath += ('?' + querystring.stringify(qs))
132
+ if (!isEmpty(qs)) realFullPath += ('?' + querystring.stringify(qs, null, null, { encodeURIComponent: (text) => (text) }))
133
133
  return { ns, path, subNs, subSubNs, qs, fullPath, fullNs, realPath, realFullPath }
134
134
  }
135
135
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bajo",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "A framework to build a giant monstrous app rapidly",
5
5
  "main": "boot/index.js",
6
6
  "scripts": {