module/i3: remove even more IPC related json error messages

This commit is contained in:
Daniel Eklöf 2019-02-17 21:53:01 +01:00
parent 11eff5b13b
commit b4845a55fe

View file

@ -152,11 +152,6 @@ workspace_lookup(struct private *m, const char *name)
static bool static bool
handle_get_version_reply(int type, const struct json_object *json, void *_m) handle_get_version_reply(int type, const struct json_object *json, void *_m)
{ {
if (!json_object_is_type(json, json_type_object)) {
LOG_ERR("'version' reply is not of type 'object'");
return false;
}
struct json_object *version; struct json_object *version;
if (!json_object_object_get_ex(json, "human_readable", &version)) if (!json_object_object_get_ex(json, "human_readable", &version))
return false; return false;
@ -168,11 +163,6 @@ handle_get_version_reply(int type, const struct json_object *json, void *_m)
static bool static bool
handle_subscribe_reply(int type, const struct json_object *json, void *_m) handle_subscribe_reply(int type, const struct json_object *json, void *_m)
{ {
if (!json_object_is_type(json, json_type_object)) {
LOG_ERR("'subscribe' reply is not of type 'object'");
return false;
}
struct json_object *success; struct json_object *success;
if (!json_object_object_get_ex(json, "success", &success)) if (!json_object_object_get_ex(json, "success", &success))
return false; return false;
@ -191,11 +181,6 @@ handle_get_workspaces_reply(int type, const struct json_object *json, void *_mod
struct module *mod = _mod; struct module *mod = _mod;
struct private *m = mod->private; struct private *m = mod->private;
if (!json_object_is_type(json, json_type_array)) {
LOG_ERR("'workspaces' reply is not of type 'array'");
return false;
}
mtx_lock(&mod->lock); mtx_lock(&mod->lock);
workspaces_free(m); workspaces_free(m);