Merge pull request #1794 from thejan2009/swaybar-ipc-mode-fix

fix swaybar ipc handling
This commit is contained in:
Drew DeVault 2018-04-10 16:33:52 -04:00 committed by GitHub
commit 23df5b637e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -331,7 +331,7 @@ bool handle_ipc_readable(struct swaybar *bar) {
switch (resp->type) {
case IPC_EVENT_WORKSPACE:
ipc_get_workspaces(bar);
return true;
break;
case IPC_EVENT_MODE: {
json_object *result = json_tokener_parse(resp->payload);
if (!result) {
@ -367,5 +367,5 @@ bool handle_ipc_readable(struct swaybar *bar) {
return false;
}
free_ipc_response(resp);
return false;
return true;
}