From 428b44cc2b849e02e0acf1909f58dd2119d5ad4f Mon Sep 17 00:00:00 2001 From: Xjph Date: Mon, 29 Aug 2022 09:48:15 -0230 Subject: [PATCH] Make file browse result check nullsafe --- ObservatoryCore/UI/Views/BasicUIView.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs index 72084ca..ab6059d 100644 --- a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs +++ b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs @@ -933,7 +933,7 @@ namespace Observatory.UI.Views var browseTask = openFileDialog.ShowAsync((Window)((Button)source).GetVisualRoot()); browseTask.ContinueWith((task) => { - if (task.Result.Count() > 0) + if (task.Result?.Count() > 0) { string path = browseTask.Result[0]; Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() => { settingPath.Text = path; });