Skip to content

Commit

Permalink
Merge pull request #314 from domingguss/master
Browse files Browse the repository at this point in the history
bugfix: impossible to use TinyGSM without ESP Wifi
  • Loading branch information
mobizt authored Jan 20, 2024
2 parents 008b4f1 + 0a6531a commit d0e5bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ESP_Mail_TCPClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ class ESP_Mail_TCPClient
if (_client_type == esp_mail_client_type_external_generic_client &&
(!_network_connection_cb || !_network_status_cb))
rdy = false;
else if (_client_type != esp_mail_client_type_external_generic_client ||
else if (_client_type != esp_mail_client_type_external_generic_client &&
_client_type != esp_mail_client_type_external_gsm_client)
rdy = false;
#else
Expand Down

0 comments on commit d0e5bfe

Please sign in to comment.