parent
88d96bc41f
commit
0d3cf36c85
|
@ -664,7 +664,7 @@ void ipc_client_handle_command(struct ipc_client *client) {
|
||||||
{
|
{
|
||||||
// TODO: Check if they're permitted to use these events
|
// TODO: Check if they're permitted to use these events
|
||||||
struct json_object *request = json_tokener_parse(buf);
|
struct json_object *request = json_tokener_parse(buf);
|
||||||
if (request == NULL) {
|
if (request == NULL || !json_object_is_type(request, json_type_array)) {
|
||||||
const char msg[] = "{\"success\": false}";
|
const char msg[] = "{\"success\": false}";
|
||||||
client_valid = ipc_send_reply(client, msg, strlen(msg));
|
client_valid = ipc_send_reply(client, msg, strlen(msg));
|
||||||
wlr_log(WLR_INFO, "Failed to parse subscribe request");
|
wlr_log(WLR_INFO, "Failed to parse subscribe request");
|
||||||
|
|
Loading…
Reference in a new issue