Skip to content

Commit 7e808e7

Browse files
authored
Merge pull request #146 from Countly/arifBurakDemiray-patch-1
Fix comma
2 parents 799820d + f2d0d2b commit 7e808e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

countlyCommon/countlyCommon/CountlyBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ internal async Task<bool> RecordExceptionInternal(string error, string stackTrac
912912
Dictionary<string, string> segmentation = UtilityHelper.RemoveExtraSegments(customInfo, config.MaxSegmentationValues);
913913
segmentation = UtilityHelper.FixSegmentKeysAndValues(segmentation, config.MaxKeyLength, config.MaxValueSize);
914914

915-
ExceptionEvent eEvent = new ExceptionEvent(UtilityHelper.TrimKey(error, config.MaxKeyLength),, UtilityHelper.ManipulateStackTrace(stackTrace, Configuration.MaxStackTraceLinesPerThread, Configuration.MaxStackTraceLineLength) ?? string.Empty, unhandled, string.Join("\n", CrashBreadcrumbs.ToArray()), run, AppVersion, segmentation, DeviceData);
915+
ExceptionEvent eEvent = new ExceptionEvent(UtilityHelper.TrimKey(error, config.MaxKeyLength), UtilityHelper.ManipulateStackTrace(stackTrace, Configuration.MaxStackTraceLinesPerThread, Configuration.MaxStackTraceLineLength) ?? string.Empty, unhandled, string.Join("\n", CrashBreadcrumbs.ToArray()), run, AppVersion, segmentation, DeviceData);
916916

917917
if (!unhandled) {
918918
bool saveSuccess = false;

0 commit comments

Comments
 (0)