aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-12-18 19:35:27 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-12-18 19:35:27 -0500
commitd1e031025d8795e0cbaefc0a07c36ced49219eb9 (patch)
treef854694786e274a784b6e6c5fb95282b611d7b29 /swaybar
parentImplement compositor support for swaylock (diff)
downloadsway-d1e031025d8795e0cbaefc0a07c36ced49219eb9.tar.gz
sway-d1e031025d8795e0cbaefc0a07c36ced49219eb9.tar.zst
sway-d1e031025d8795e0cbaefc0a07c36ced49219eb9.zip
I'm still getting crashes without this line
Diffstat (limited to 'swaybar')
-rw-r--r--swaybar/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/swaybar/main.c b/swaybar/main.c
index f9387b3c..1cc71c66 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -136,6 +136,9 @@ void ipc_update_workspaces() {
136 for (i = 0; i < json_object_array_length(results); ++i) { 136 for (i = 0; i < json_object_array_length(results); ++i) {
137 json_object *ws_json = json_object_array_get_idx(results, i); 137 json_object *ws_json = json_object_array_get_idx(results, i);
138 json_object *num, *name, *visible, *focused, *out, *urgent; 138 json_object *num, *name, *visible, *focused, *out, *urgent;
139 if (ws_json) {
140 continue;
141 }
139 json_object_object_get_ex(ws_json, "num", &num); 142 json_object_object_get_ex(ws_json, "num", &num);
140 json_object_object_get_ex(ws_json, "name", &name); 143 json_object_object_get_ex(ws_json, "name", &name);
141 json_object_object_get_ex(ws_json, "visible", &visible); 144 json_object_object_get_ex(ws_json, "visible", &visible);