aboutsummaryrefslogtreecommitdiff
path: root/swaybar
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2015-12-18 19:35:27 -0500
committerFurkan Sahin <furkan-dev@proton.me>2015-12-18 19:35:27 -0500
commitc17520d0a1630d5df6e73e64a5e7fd243fe6430b (patch)
treef854694786e274a784b6e6c5fb95282b611d7b29 /swaybar
parente835bdcdf2c83975a073c92354cc8e26a53e125e (diff)
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() {
for (i = 0; i < json_object_array_length(results); ++i) {
json_object *ws_json = json_object_array_get_idx(results, i);
json_object *num, *name, *visible, *focused, *out, *urgent;
+ if (ws_json) {
+ continue;
+ }
json_object_object_get_ex(ws_json, "num", &num);
json_object_object_get_ex(ws_json, "name", &name);
json_object_object_get_ex(ws_json, "visible", &visible);