@nxtedition/lib 21.8.2 → 21.8.3

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/http.js +1 -1
  2. package/package.json +1 -1
package/http.js CHANGED
@@ -91,7 +91,7 @@ export class Context {
91
91
 
92
92
  get query() {
93
93
  if (this.#query === undefined) {
94
- this.#query = this.url.search.length > 1 ? querystring.parse(this.url.search.slice(1)) : null
94
+ this.#query = this.url.search.length > 1 ? querystring.parse(this.url.search.slice(1)) : {}
95
95
  }
96
96
  return this.#query
97
97
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "21.8.2",
3
+ "version": "21.8.3",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",