hyprctl: fix plugin list on no plugins (#5357)

This commit is contained in:
Micovec 2024-03-31 22:45:22 +02:00 committed by GitHub
parent 9e8f051896
commit 8cb38d41d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1449,7 +1449,10 @@ std::string dispatchPlugin(eHyprCtlOutputFormat format, std::string request) {
g_pPluginSystem->unloadPlugin(PLUGIN);
} else if (OPERATION == "list") {
const auto PLUGINS = g_pPluginSystem->getAllPlugins();
const auto PLUGINS = g_pPluginSystem->getAllPlugins();
if (PLUGINS.size() == 0)
return "no plugins loaded";
std::string list = "";
for (auto& p : PLUGINS) {