From cc6cdd13b2f8f254a90b2228541ff718bec00439 Mon Sep 17 00:00:00 2001 From: hishitetsu <66369541+hishitetsu@users.noreply.github.com> Date: Mon, 4 Dec 2023 18:48:39 +0900 Subject: [PATCH] Update AboutPage.xaml.cs --- src/Files.App/Views/Settings/AboutPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Files.App/Views/Settings/AboutPage.xaml.cs b/src/Files.App/Views/Settings/AboutPage.xaml.cs index 5a0b825472d5..bc2d261e8203 100644 --- a/src/Files.App/Views/Settings/AboutPage.xaml.cs +++ b/src/Files.App/Views/Settings/AboutPage.xaml.cs @@ -16,7 +16,7 @@ public AboutPage() private async void ThirdPartyLicenses_Click(object sender, bool e) { - if (e && ViewModel.ThirdPartyNotices is null) + if (e && string.IsNullOrEmpty(ViewModel.ThirdPartyNotices)) await ViewModel.LoadThirdPartyNoticesAsync(); }