WiFi BSSID getter fix (#9434)

Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
This commit is contained in:
Juraj Andrássy 2024-03-29 11:28:05 +01:00 committed by GitHub
parent baca007957
commit 7b29bac625
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -370,7 +370,7 @@ String WiFiSTAClass::psk() const
*/
uint8_t* WiFiSTAClass::BSSID(uint8_t* buff)
{
return STA.BSSID();
return STA.BSSID(buff);
}
/**