From 2736224f9b4551cf60b348027fa96459b5a301f5 Mon Sep 17 00:00:00 2001 From: Petr Gotthard Date: Fri, 2 Nov 2018 18:45:48 +0100 Subject: [PATCH] Typo that did destroy all the bindings --- src/lorawan_connector_ws.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lorawan_connector_ws.erl b/src/lorawan_connector_ws.erl index 6f16dc60..2abdf3a5 100644 --- a/src/lorawan_connector_ws.erl +++ b/src/lorawan_connector_ws.erl @@ -78,7 +78,7 @@ validate(Req) -> validate0([{Key, Value} | Other]) -> case validate_key(Key, Value) of ok -> - validate(Other); + validate0(Other); Else -> Else end;