firmware_build_epoch extern instead of BUILD_EPOCH macro

This commit is contained in:
Ian Gulliver
2026-04-19 17:38:00 -07:00
parent 92d2ce8181
commit bd669ca19c
2 changed files with 2 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ std::optional<ResponseInfo> handle_info(const responder&, const RequestInfo&) {
resp.ip = ns.ip;
resp.firmware_name = firmware_name;
resp.boot = detected_boot_reason;
resp.build_epoch = BUILD_EPOCH;
resp.build_epoch = firmware_build_epoch;
return resp;
}