diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-11-28 21:41:58 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-11-28 21:41:58 -0500 |
| commit | a4e1d2b361f4ac149c48f6f5fc7d4a38478e0098 (patch) | |
| tree | dabb4c34a243e70ebaaa86d8bd9b779b2b422d56 /swaymsg/main.c | |
| parent | 338da544f835e4848002adb7660d22a7d8a30b05 (diff) | |
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/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; } |
