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 eaad170 commit 789ecf4Copy full SHA for 789ecf4
src/BootstrapBlazor/Components/ErrorLogger/BootstrapBlazorErrorBoundary.cs
@@ -99,8 +99,8 @@ private void ResetException()
99
{
100
_exception = null;
101
102
- _currentExceptionPropertyInfo ??= GetType().BaseType!.GetProperty(nameof(CurrentException), BindingFlags.NonPublic | BindingFlags.Instance);
103
- _currentExceptionPropertyInfo?.SetValue(this, null);
+ _currentExceptionPropertyInfo ??= GetType().BaseType!.GetProperty(nameof(CurrentException), BindingFlags.NonPublic | BindingFlags.Instance)!;
+ _currentExceptionPropertyInfo.SetValue(this, null);
104
}
105
106
private Exception? _exception = null;
0 commit comments