From 280c20de943a6434dbcc588ebb32107dd83d5931 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 5 Jun 2018 09:09:12 +0200 Subject: [PATCH] websocket: fix format selection in client connections --- lib/nodes/websocket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nodes/websocket.c b/lib/nodes/websocket.c index 2f2faf8cf..54c47c0b0 100644 --- a/lib/nodes/websocket.c +++ b/lib/nodes/websocket.c @@ -415,7 +415,7 @@ int websocket_start(struct node *n) c->state = WEBSOCKET_CONNECTION_STATE_CONNECTING; c->node = n; - c->format = format_type_lookup("villas.web"); + c->format = format_type_lookup("villas.web"); /** @todo We could parse the format from the URI */ c->destination = d; d->info.context = web->context;