Fixed
- RESTful / MQTT: after a power restart, when the Envoy gateway took several minutes to come back online, the REST server returned
"This data is not available in your system."for all endpoints and never recovered without a manual plugin restart; root cause: each retry attempt created a new Express server on the same port — the second and subsequent servers silently failed to bind (port already in use, no error handler), leavingrestFulConnected = false, so allupdate()calls were skipped even after the device successfully reconnected; fixed by creating the RESTful and MQTT instances once before the retry loop so the port is bound a single time and survives all connect attempts; the'set'(POST/MQTT command) handler is attached once via anactiveDevicereference that is updated to the currentEnvoyDeviceinstance only after a successful connect
Full Changelog: v10.7.3...v10.7.4