Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file.

### Fixed
- Do not free BT memory when in use (#24480)
- Berry avoid `tasmota.wifi()` returning bad values when wifi is turned off

### Removed
- Berry `tasmota.urlbecload()` superseded by Extension Manager (#24493)
Expand Down
2 changes: 1 addition & 1 deletion tasmota/tasmota_xdrv_driver/xdrv_52_3_berry_tasmota.ino
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ extern "C" {
// (-2) map instance, (-1) map
}
be_map_insert_str(vm, "mac", WiFiHelper::macAddress().c_str());
be_map_insert_bool(vm, "up", WifiHasIP());
be_map_insert_bool(vm, "up", WifiHasIP() && Settings->flag4.network_wifi);
if (Settings->flag4.network_wifi) {
int32_t rssi = WiFi.RSSI();
bool show_rssi = false;
Expand Down