Skip to content

Commit 6751973

Browse files
committed
Fix executable launch from recents list
1 parent d00d5d2 commit 6751973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Files UWP/YourHome.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ private async void RecentsView_ItemClick(object sender, ItemClickEventArgs e)
355355
try
356356
{
357357
var file = (await StorageFile.GetFileFromPathAsync(path));
358-
if (file.FileType == "Application")
358+
if (file.DisplayType == "Application")
359359
{
360360
await Interaction.LaunchExe(path);
361361

0 commit comments

Comments
 (0)