From db536142de7692a307b82673a5026c9179f3d3b3 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Mon, 30 Mar 2020 22:21:41 +0200 Subject: [PATCH] fixed empty result --- lib/webfuse/provider/impl/operation/read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/webfuse/provider/impl/operation/read.c b/lib/webfuse/provider/impl/operation/read.c index 7be4bf3..5c2b639 100644 --- a/lib/webfuse/provider/impl/operation/read.c +++ b/lib/webfuse/provider/impl/operation/read.c @@ -70,7 +70,7 @@ void wfp_impl_respond_read( { json_t * result = json_object(); json_object_set_new(result, "data", json_string("")); - json_object_set_new(result, "format", json_string("identitiy")); + json_object_set_new(result, "format", json_string("identity")); json_object_set_new(result, "count", json_integer(0)); wfp_impl_respond(request, result);