Skip to content

Commit

Permalink
WiFi BSSID getter fix (#9434)
Browse files Browse the repository at this point in the history
Co-authored-by: Me No Dev <[email protected]>
  • Loading branch information
JAndrassy and me-no-dev authored Mar 29, 2024
1 parent baca007 commit 7b29bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/WiFi/src/WiFiSTA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ String WiFiSTAClass::psk() const
*/
uint8_t* WiFiSTAClass::BSSID(uint8_t* buff)
{
return STA.BSSID();
return STA.BSSID(buff);
}

/**
Expand Down

0 comments on commit 7b29bac

Please sign in to comment.