Skip to content

Commit 1250146

Browse files
authored
Fix: Fixed null ref in OpenProperties (files-community#14627)
1 parent 826e00e commit 1250146

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Files.App/UserControls/Widgets/RecentFilesWidget.xaml.cs

+4
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,10 @@ private void OpenFileLocation(RecentItem item)
244244
private void OpenProperties(RecentItem item)
245245
{
246246
var flyout = HomePageContext.ItemContextFlyoutMenu;
247+
248+
if (item is null || flyout is null)
249+
return;
250+
247251
EventHandler<object> flyoutClosed = null!;
248252
flyoutClosed = async (s, e) =>
249253
{

0 commit comments

Comments
 (0)