aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--swaybar/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/swaybar/main.c b/swaybar/main.c
index 4b9ba49d..c0a24bcf 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -135,6 +135,10 @@ void ipc_update_workspaces() {
135 int i; 135 int i;
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 if (!ws_json) {
139 // wat
140 continue;
141 }
138 json_object *num, *name, *visible, *focused, *out, *urgent; 142 json_object *num, *name, *visible, *focused, *out, *urgent;
139 json_object_object_get_ex(ws_json, "num", &num); 143 json_object_object_get_ex(ws_json, "num", &num);
140 json_object_object_get_ex(ws_json, "name", &name); 144 json_object_object_get_ex(ws_json, "name", &name);