From 9fe0bb275472127fd108dd88300c47c5bbdd9243 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Fri, 9 Jan 2026 16:30:22 +0100 Subject: [PATCH] add repo to version update report --- wled00/data/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wled00/data/index.js b/wled00/data/index.js index b3b5f346..ec2b0e67 100644 --- a/wled00/data/index.js +++ b/wled00/data/index.js @@ -3821,7 +3821,8 @@ function reportUpgradeEvent(oldVersion, newVersion) { bootloaderSHA256: infoData.bootloaderSHA256 || '', // Bootloader SHA256 hash - not yet availeable in WLEDMM brand: infoData.brand, // Device brand (always present) product: infoData.product, // Product name (always present) - flashSize: infoData.flash // Flash size (always present) + flashSize: infoData.flash, // Flash size (always present) + repo: infoData.repo // GitHub repository (always present) }; // Add optional fields if available if (infoData.tpsram !== undefined) upgradeData.psramSize = Math.round(infoData.tpsram / (1024 * 1024)); // convert bytes to MB - tpsram is MM specific