Resolve context data for uwps

This commit is contained in:
Jack251970 2025-06-26 12:16:20 +08:00
parent 9f404aa92c
commit 3fe1e5023a

View file

@ -474,7 +474,7 @@ namespace Flow.Launcher.Plugin.Program
Visible = true,
Action = (r) =>
{
if (r.ContextData is UWPPackage uwp)
if (r.ContextData is UWPApp uwp)
{
Context.API.OpenDirectory(uwp.Location);
return true;
@ -499,7 +499,7 @@ namespace Flow.Launcher.Plugin.Program
Visible = true,
Action = (r) =>
{
if (r.ContextData is UWPPackage uwp)
if (r.ContextData is UWPApp uwp)
{
return true;
}