From bda7a9321d983418373bb23ef0143519da6cefd0 Mon Sep 17 00:00:00 2001 From: David Maisonave <47364845+David-Maisonave@users.noreply.github.com> Date: Sun, 29 Dec 2024 05:05:08 -0500 Subject: [PATCH] Update file.html --- plugins/DupFileManager/file.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/DupFileManager/file.html b/plugins/DupFileManager/file.html index 92cae41..7d85dbe 100644 --- a/plugins/DupFileManager/file.html +++ b/plugins/DupFileManager/file.html @@ -77,6 +77,7 @@ class PluginDupFileManager extends StashPlugin{ if (this.IS_DOCKER){ const GqlRoot = this.GraphQl_URL.replace("/graphql", ""); results = results.replaceAll("http://127.0.0.1:9999", GqlRoot); + results = results.replaceAll("http://localhost:9999", GqlRoot); } const strResults = JSON.stringify(results); if (strResults.indexOf("INF: 'Error: Nothing to do!!!") > -1){ @@ -90,7 +91,6 @@ class PluginDupFileManager extends StashPlugin{ var plugindupfilemanager = new PluginDupFileManager(); const html = plugindupfilemanager.GetFile(); -var GraphQl_URL = plugindupfilemanager.GraphQl_URL; $(document).ready(function(){ $( "#report" ).append( html ); });