Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMackinnon Buck <mackinnon.buck@gmail.com>2022-08-03 23:00:05 +0300
committerGitHub <noreply@github.com>2022-08-03 23:00:05 +0300
commit4f53cb327429709c20aa7cd9858f9f27f85d8b25 (patch)
treeee906d1419a71484a7c10e0be85146e49bfea23d
parente41c405fc62803dfd98ecb63f0f9c7c6607600ee (diff)
Update src/Components/Server/src/Circuits/RemoteNavigationManager.csmbuck/navigation-cancellation-follow-up
Co-authored-by: campersau <buchholz.bastian@googlemail.com>
-rw-r--r--src/Components/Server/src/Circuits/RemoteNavigationManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Components/Server/src/Circuits/RemoteNavigationManager.cs b/src/Components/Server/src/Circuits/RemoteNavigationManager.cs
index 5b877aca2a..439faaebc6 100644
--- a/src/Components/Server/src/Circuits/RemoteNavigationManager.cs
+++ b/src/Components/Server/src/Circuits/RemoteNavigationManager.cs
@@ -112,7 +112,7 @@ internal sealed partial class RemoteNavigationManager : NavigationManager, IHost
// We shouldn't ever reach this since exceptions thrown from handlers are handled in HandleLocationChangingHandlerException.
// But if some other exception gets thrown, we still want to know about it.
Log.NavigationFailed(_logger, uri, ex);
- UnhandledException.Invoke(this, ex);
+ UnhandledException?.Invoke(this, ex);
}
}
}