get process path without waiting

This commit is contained in:
Seraphima
2024-08-22 16:37:13 +02:00
parent f665966db6
commit 558ea132d1

View File

@@ -245,7 +245,7 @@ namespace Utils
std::optional<AppData> GetApp(HWND window, const AppList& apps)
{
std::wstring processPath = get_process_path_waiting_uwp(window);
std::wstring processPath = get_process_path(window);
return Utils::Apps::GetApp(processPath, apps);
}
}