From 868eb66033c724eac267d57db8bca851b8fd77b5 Mon Sep 17 00:00:00 2001 From: TechNyquist Date: Tue, 16 Jul 2019 18:44:09 +0200 Subject: [PATCH] fix: remove async from check prior actual connection to avoid SSL-connection false positive --- src/GSMClient.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/GSMClient.cpp b/src/GSMClient.cpp index ca14534..69b3bce 100644 --- a/src/GSMClient.cpp +++ b/src/GSMClient.cpp @@ -228,11 +228,7 @@ int GSMClient::connect() stop(); } - if (_synch) { - while (ready() == 0); - } else if (ready() == 0) { - return 0; - } + while (ready() == 0); _state = CLIENT_STATE_CREATE_SOCKET;