diff options
-rw-r--r-- | src/afb-api-ws.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-api-ws.c b/src/afb-api-ws.c index 1bd10711..0022d526 100644 --- a/src/afb-api-ws.c +++ b/src/afb-api-ws.c @@ -325,7 +325,7 @@ int afb_api_ws_add_server(const char *path, struct afb_apiset *apiset) goto error; /* check api name */ - if (afb_apiset_has(apiset, apiws->api, 1)) { + if (!afb_apiset_lookup(apiset, apiws->api, 1)) { ERROR("Can't provide ws-server for %s: API %s doesn't exist", path, apiws->api); goto error2; } |