Perform disconnection regardless of the IP address

pull/10377/head
Michal Paszta 2019-04-11 14:42:47 +03:00
parent 2641fb38ce
commit 8eda11a5a3
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ int ESP8266Interface::disconnect()
_initialized = false;
nsapi_error_t status = _conn_status_to_error();
if (status == NSAPI_ERROR_NO_CONNECTION || !get_ip_address()) {
if (status == NSAPI_ERROR_NO_CONNECTION) {
return NSAPI_ERROR_NO_CONNECTION;
}