diff options
author | emersion <contact@emersion.fr> | 2018-11-29 09:10:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-29 09:10:00 +0100 |
commit | fd37ded3a317d516bafdb92ec8fc1408892f480c (patch) | |
tree | 7740a37da575724b92fdec9ac464796717c641aa /swaymsg/main.c | |
parent | cf1793b4f1279d9e4f0453ebaf2433eadc8af51e (diff) | |
parent | e62ab6ddbd89fd8ffebd8942601a2f55e159e2a3 (diff) |
Merge pull request #3219 from RedSoxFan/swaymsg-object-success
swaymsg: parse success of single object
Diffstat (limited to 'swaymsg/main.c')
-rw-r--r-- | swaymsg/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c index 3e61b94a..c9c557da 100644 --- a/swaymsg/main.c +++ b/swaymsg/main.c @@ -32,6 +32,9 @@ static bool success_object(json_object *result) { // Iterate results array and return false if any of them failed static bool success(json_object *r, bool fallback) { if (!json_object_is_type(r, json_type_array)) { + if (json_object_is_type(r, json_type_object)) { + return success_object(r); + } return fallback; } |