From 126804e551804ab04869b76df6b682cf2b78e05e Mon Sep 17 00:00:00 2001 From: Nightara Date: Fri, 17 Nov 2023 16:54:53 +0100 Subject: [PATCH] Fixed request URL for DPS.Report upload --- GW2EIDPSReport/DPSReportController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GW2EIDPSReport/DPSReportController.cs b/GW2EIDPSReport/DPSReportController.cs index 3b051d8c57..146db496c3 100644 --- a/GW2EIDPSReport/DPSReportController.cs +++ b/GW2EIDPSReport/DPSReportController.cs @@ -114,7 +114,7 @@ public static DPSReportUploadObject UploadUsingEI(FileInfo fi, TraceHandler trac return multiPartContent; }; - DPSReportUploadObject response = GetDPSReportResponse("UploadUsingEI", GetUploadContentURL(BaseUploadContentURL, userToken, anonymous, detailedWvW) + " & generator=ei", traceHandler, contentCreator); + DPSReportUploadObject response = GetDPSReportResponse("UploadUsingEI", GetUploadContentURL(BaseUploadContentURL, userToken, anonymous, detailedWvW) + "&generator=ei", traceHandler, contentCreator); if (response != null && response.Error != null) { traceHandler("DPSReport: UploadUsingEI failed - " + response.Error);