mirror of
https://github.com/Koenkk/zigbee-OTA.git
synced 2026-06-24 11:16:34 +00:00
fix: unused var
This commit is contained in:
@@ -90,7 +90,7 @@ export function identifyStacks(_github: Octokit, core: typeof CoreApi, _context:
|
||||
let stack: FirmwareStack["stack"] = "Unknown";
|
||||
let stackDetails = "";
|
||||
|
||||
for (const {tagId, data} of parseSubElements(otaData, header.totalImageSize)) {
|
||||
for (const {data} of parseSubElements(otaData, header.totalImageSize)) {
|
||||
if (data.indexOf(SI_GBL_HEADER_TAG) === 0) {
|
||||
stack = "EmberZNet";
|
||||
stackDetails = "GBL";
|
||||
|
||||
Reference in New Issue
Block a user