Skip to content

Commit

Permalink
Fix: Fixed issue where third party licenses were not displayed (#14150)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishitetsu authored Dec 4, 2023
1 parent 1be8eee commit 4796919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Files.App/Views/Settings/AboutPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 4796919

Please sign in to comment.