Skip to content

Commit bb5b476

Browse files
author
maps2002
committed
Dont append at the end an extra new line character
1 parent 44c036f commit bb5b476

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Job/Processors/ActivationReportProcessor.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,9 +459,12 @@ protected override string GetCsvReportItemFormated(ReportOutputItem reportOutput
459459
subscribedSku.ActionType ?? string.Empty,
460460
// Action Subtype
461461
subscribedSku.ActionSubType ?? string.Empty);
462-
}
462+
}
463463
}
464464

465+
// Remove last new line
466+
result = result.Remove(result.Length - 1, 1);
467+
465468
return result.ToString();
466469
}
467470

0 commit comments

Comments
 (0)