We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c036f commit bb5b476Copy full SHA for bb5b476
Job/Processors/ActivationReportProcessor.cs
@@ -459,9 +459,12 @@ protected override string GetCsvReportItemFormated(ReportOutputItem reportOutput
459
subscribedSku.ActionType ?? string.Empty,
460
// Action Subtype
461
subscribedSku.ActionSubType ?? string.Empty);
462
- }
+ }
463
}
464
465
+ // Remove last new line
466
+ result = result.Remove(result.Length - 1, 1);
467
+
468
return result.ToString();
469
470
0 commit comments