Initialize peerAddress in client constructor.

Co-authored-by: wakwak-koba <wakwak-koba@users.noreply.github.com>
This commit is contained in:
h2zero
2020-07-30 12:31:17 -06:00
committed by h2zero
parent 73cec7a92a
commit 97832d4d95
3 changed files with 4 additions and 8 deletions

View File

@@ -148,10 +148,7 @@ void NimBLEDevice::stopAdvertising() {
NIMBLE_MAX_CONNECTIONS);
}
NimBLEClient* pClient = new NimBLEClient();
if(peerAddress != NimBLEAddress("")) {
pClient->setPeerAddress(peerAddress);
}
NimBLEClient* pClient = new NimBLEClient(peerAddress);
m_cList.push_back(pClient);
return pClient;