From cc47874f6903a510385742cfa8cd04ee09506fed Mon Sep 17 00:00:00 2001 From: Bastien Gatellier Date: Sat, 6 Jan 2024 17:47:04 +0100 Subject: [PATCH] fix: multilingual redirect on URL testing from the result page (#304) fix: multilingual redirect on test from the result page --- assets/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/index.js b/assets/js/index.js index 42a6c542..224eb157 100644 --- a/assets/js/index.js +++ b/assets/js/index.js @@ -65,7 +65,7 @@ async function initButtonRemakeAnalysis() { e.preventDefault(); const url = ResultCacheService.getLast().url; - await AnalysisService.launchAnalysisByURL(url); + await AnalysisService.launchAnalysisByURL(url, window.location.pathname); }); }