swaymsg: fix get_outputs status code

This commit is contained in:
emersion 2018-10-29 11:25:54 +01:00
parent 1c2a356dcf
commit eb675f0dfd
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ static bool success_object(json_object *result) {
json_object *success;
if (!json_object_object_get_ex(result, "success", &success)) {
return false;
return true;
}
return json_object_get_boolean(success);