2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Make file browse result check nullsafe

This commit is contained in:
Xjph 2022-08-29 09:48:15 -02:30
parent 11a2dcb819
commit 428b44cc2b

View File

@ -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; });