From 9cce8826506aae5fce8bb895ea0789d0716a6c38 Mon Sep 17 00:00:00 2001 From: romansertsov Date: Fri, 12 Apr 2024 17:34:57 +0300 Subject: [PATCH] query params for evidence fix --- fiftyone.pipeline.core/evidence.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fiftyone.pipeline.core/evidence.js b/fiftyone.pipeline.core/evidence.js index c61513a..b9be66e 100644 --- a/fiftyone.pipeline.core/evidence.js +++ b/fiftyone.pipeline.core/evidence.js @@ -150,9 +150,9 @@ class Evidence { // Get querystring data - const params = new url.URL(request.url, true); + const params = new url.URL(request.url); - const query = params.query; + const query = params.searchParams; Object.keys(query).forEach(function (key) { const value = query[key];