Skip to content

Commit 810fa20

Browse files
committed
fix nullables in retry result
1 parent cb68d90 commit 810fa20

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

StabilityMatrix.Avalonia/App.axaml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -534,8 +534,8 @@ internal static IServiceCollection ConfigureServices()
534534
retryCount,
535535
6,
536536
timeSpan.TotalSeconds,
537-
result?.Result.StatusCode,
538-
result?.Result.ToString()
537+
result?.Result?.StatusCode,
538+
result?.Result?.ToString()
539539
);
540540
}
541541
}
@@ -562,8 +562,8 @@ internal static IServiceCollection ConfigureServices()
562562
retryCount,
563563
7,
564564
timeSpan.TotalSeconds,
565-
result?.Result.StatusCode,
566-
result?.Result.ToString()
565+
result?.Result?.StatusCode,
566+
result?.Result?.ToString()
567567
);
568568
}
569569
}

0 commit comments

Comments
 (0)