hyprctl: fix crash in unsafe state with activeworkspace

fixes #3419
This commit is contained in:
Vaxry 2023-09-25 15:00:19 +01:00
parent 3b657257ec
commit ffacd2efd1
1 changed files with 7 additions and 0 deletions

View File

@ -228,8 +228,15 @@ static std::string getWorkspaceData(CWorkspace* w, HyprCtl::eHyprCtlOutputFormat
}
std::string activeWorkspaceRequest(HyprCtl::eHyprCtlOutputFormat format) {
if (!g_pCompositor->m_pLastMonitor)
return "unsafe state";
std::string result = "";
auto w = g_pCompositor->getWorkspaceByID(g_pCompositor->m_pLastMonitor->activeWorkspace);
if (!w)
return "internal error";
return getWorkspaceData(w, format);
}