Skip to content

Commit

Permalink
Fixed request URL for DPS.Report upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightara authored Nov 17, 2023
1 parent 399a4a6 commit 126804e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GW2EIDPSReport/DPSReportController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public static DPSReportUploadObject UploadUsingEI(FileInfo fi, TraceHandler trac
return multiPartContent;
};

DPSReportUploadObject response = GetDPSReportResponse<DPSReportUploadObject>("UploadUsingEI", GetUploadContentURL(BaseUploadContentURL, userToken, anonymous, detailedWvW) + " & generator=ei", traceHandler, contentCreator);
DPSReportUploadObject response = GetDPSReportResponse<DPSReportUploadObject>("UploadUsingEI", GetUploadContentURL(BaseUploadContentURL, userToken, anonymous, detailedWvW) + "&generator=ei", traceHandler, contentCreator);
if (response != null && response.Error != null)
{
traceHandler("DPSReport: UploadUsingEI failed - " + response.Error);
Expand Down

0 comments on commit 126804e

Please sign in to comment.