From b6f3cb63942cc41f2785f991554d759668950b8e Mon Sep 17 00:00:00 2001 From: Will Tatam Date: Sat, 22 Nov 2025 12:32:23 +0000 Subject: [PATCH] Use deviceId not mac --- wled00/data/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/data/index.js b/wled00/data/index.js index d5e7f7d4..8832fc71 100644 --- a/wled00/data/index.js +++ b/wled00/data/index.js @@ -3427,7 +3427,7 @@ function reportUpgradeEvent(info, oldVersion, newVersion) { // Map to UpgradeEventRequest structure per OpenAPI spec // Required fields: deviceId, version, previousVersion, releaseName, chip, ledCount, isMatrix, bootloaderSHA256 const upgradeData = { - deviceId: infoData.deviceid, // Use anonymous unique device ID + deviceId: infoData.deviceId, // Use anonymous unique device ID version: infoData.ver || '', // Current version string previousVersion: oldVersion || '', // Previous version from version-info.json releaseName: infoData.release || '', // Release name (e.g., "WLED 0.15.0")