Merge pull request #65 from aselectroworks/ESP32-BLE_Client

fix panic'ed bug when call BLEMIDI_Client_ESP32::end() is called
This commit is contained in:
lathoub 2022-09-19 12:02:41 +02:00 committed by GitHub
commit 929c2fc049
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ public:
_client->disconnect(); _client->disconnect();
_client = nullptr; _client = nullptr;
return !_client->isConnected(); return true;
} }
void write(uint8_t *data, uint8_t length) void write(uint8_t *data, uint8_t length)