Skip to content

Commit 929c2fc

Browse files
authored
Merge pull request #65 from aselectroworks/ESP32-BLE_Client
fix panic'ed bug when call BLEMIDI_Client_ESP32::end() is called
2 parents 8dee1f7 + 8e740fb commit 929c2fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hardware/BLEMIDI_Client_ESP32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ class BLEMIDI_Client_ESP32
256256
_client->disconnect();
257257
_client = nullptr;
258258

259-
return !_client->isConnected();
259+
return true;
260260
}
261261

262262
void write(uint8_t *data, uint8_t length)

0 commit comments

Comments
 (0)