mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 04:45:57 +01:00
only discard second arg in rollinglog
This commit is contained in:
parent
97bb2a5e0f
commit
e499411123
1 changed files with 2 additions and 1 deletions
|
@ -1677,7 +1677,8 @@ std::string CHyprCtl::getReply(std::string request) {
|
|||
|
||||
std::string result = "";
|
||||
|
||||
request = request.substr(0, request.find(" "));
|
||||
if (request.starts_with("rollinglog"))
|
||||
request = request.substr(0, request.find(" "));
|
||||
|
||||
// parse exact cmds first, then non-exact.
|
||||
for (auto& cmd : m_vCommands) {
|
||||
|
|
Loading…
Reference in a new issue