Skip to content

Commit

Permalink
Merge pull request #829 from Nightara/patch-1
Browse files Browse the repository at this point in the history
Fix request URL for DPS.Report upload
  • Loading branch information
EliphasNUIT authored Nov 17, 2023
2 parents 399a4a6 + 126804e commit 2a19778
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 2a19778

Please sign in to comment.