Skip to content

Commit f9df58d

Browse files
committed
Fix result issue
1 parent 9729d25 commit f9df58d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Flow.Launcher.Infrastructure/QuickSwitch/QuickSwitch.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,16 +666,18 @@ private static async Task<bool> JumpToPathAsync(IQuickSwitchDialogWindowTab dial
666666
_autoSwitchedDialogs.Add(dialogHandle);
667667
}
668668
}
669+
670+
return result;
669671
}
670672
catch (System.Exception e)
671673
{
672674
Log.Exception(ClassName, "Failed to jump to path", e);
675+
return false;
673676
}
674677
finally
675678
{
676679
_navigationLock.Release();
677680
}
678-
return true;
679681

680682
static bool CheckPath(string path, out bool file)
681683
{

0 commit comments

Comments
 (0)