fiftyone.pipeline.core 4.4.85 → 4.4.86
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/evidence.js +2 -2
- package/package.json +1 -1
package/evidence.js
CHANGED
|
@@ -150,9 +150,9 @@ class Evidence {
|
|
|
150
150
|
|
|
151
151
|
// Get querystring data
|
|
152
152
|
|
|
153
|
-
const params = new url.URL(request.url
|
|
153
|
+
const params = new url.URL(request.url);
|
|
154
154
|
|
|
155
|
-
const query = params.
|
|
155
|
+
const query = params.searchParams;
|
|
156
156
|
|
|
157
157
|
Object.keys(query).forEach(function (key) {
|
|
158
158
|
const value = query[key];
|