aboutsummaryrefslogtreecommitdiffstats
path: root/swaybar
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-12-18 19:38:36 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-12-18 19:38:36 -0500
commitde2f3b393ac3e539aa36c8ebb3e43b4ae589f6ea (patch)
tree77a78f4f22df210706ad741399262467d8538d1c /swaybar
parentI'm still getting crashes without this line (diff)
downloadsway-de2f3b393ac3e539aa36c8ebb3e43b4ae589f6ea.tar.gz
sway-de2f3b393ac3e539aa36c8ebb3e43b4ae589f6ea.tar.zst
sway-de2f3b393ac3e539aa36c8ebb3e43b4ae589f6ea.zip
Wow that was stupid
Diffstat (limited to 'swaybar')
-rw-r--r--swaybar/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/main.c b/swaybar/main.c
index 1cc71c66..fc44d3af 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -136,7 +136,7 @@ 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) { 139 if (!ws_json) {
140 continue; 140 continue;
141 } 141 }
142 json_object_object_get_ex(ws_json, "num", &num); 142 json_object_object_get_ex(ws_json, "num", &num);