1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 00:35:26 +03:00

Fix board name in logo and status bar (#4019)

This commit is contained in:
Míguel Ángel Mulero Martínez 2024-06-11 16:59:27 +02:00 committed by GitHub
parent c7abdac31d
commit e0fd63f5d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 25 deletions

View file

@ -394,7 +394,7 @@ function processCustomDefaults() {
function processBoardInfo() {
gui_log(i18n.getMessage('boardInfoReceived', [FC.getHardwareName(), FC.CONFIG.boardVersion]));
gui_log(i18n.getMessage('boardInfoReceived', [FC.CONFIG.hardwareName, FC.CONFIG.boardVersion]));
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_46)) {
checkReportProblems();
@ -405,7 +405,7 @@ function processBoardInfo() {
boardIdentifier: FC.CONFIG.boardIdentifier,
targetName: FC.CONFIG.targetName,
boardName: FC.CONFIG.boardName,
hardware: FC.getHardwareName(),
hardware: FC.CONFIG.hardwareName,
manufacturerId: FC.CONFIG.manufacturerId,
apiVersion: FC.CONFIG.apiVersion,
flightControllerVersion: FC.CONFIG.flightControllerVersion,