aboutsummaryrefslogtreecommitdiffstats
path: root/swaymsg
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-11-28 21:41:58 -0500
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-11-28 21:41:58 -0500
commite62ab6ddbd89fd8ffebd8942601a2f55e159e2a3 (patch)
treedabb4c34a243e70ebaaa86d8bd9b779b2b422d56 /swaymsg
parentMerge pull request #3216 from RedSoxFan/fix-empty-titlebars (diff)
downloadsway-e62ab6ddbd89fd8ffebd8942601a2f55e159e2a3.tar.gz
sway-e62ab6ddbd89fd8ffebd8942601a2f55e159e2a3.tar.zst
sway-e62ab6ddbd89fd8ffebd8942601a2f55e159e2a3.zip
swaymsg: parse success of single object
Allows swaymsg to parse the success attribute of a single object response. This is needed for the subscribe event.
Diffstat (limited to 'swaymsg')
-rw-r--r--swaymsg/main.c3
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) {
32// Iterate results array and return false if any of them failed 32// Iterate results array and return false if any of them failed
33static bool success(json_object *r, bool fallback) { 33static bool success(json_object *r, bool fallback) {
34 if (!json_object_is_type(r, json_type_array)) { 34 if (!json_object_is_type(r, json_type_array)) {
35 if (json_object_is_type(r, json_type_object)) {
36 return success_object(r);
37 }
35 return fallback; 38 return fallback;
36 } 39 }
37 40