mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 12:46:00 +01:00
Fix error when running hyprctl dispatch exec
with an arg that contains
a `/`
This commit is contained in:
parent
0488f17976
commit
0085319c18
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ void dispatchRequest(int argc, char** argv) {
|
|||
return;
|
||||
}
|
||||
|
||||
std::string rq = "dispatch " + std::string(argv[2]) + " " + std::string(argv[3]);
|
||||
std::string rq = "/dispatch " + std::string(argv[2]) + " " + std::string(argv[3]);
|
||||
|
||||
request(rq);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue