From 250e3f3dc4ea90aa3bb803817194609a762916df Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Thu, 9 Jan 2020 14:35:03 +0100 Subject: [PATCH] Fix display of wifi scan signal strength Fix display of wifi scan signal strength --- tasmota/xdrv_01_webserver.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_01_webserver.ino b/tasmota/xdrv_01_webserver.ino index 73127a06f..eff136c7d 100644 --- a/tasmota/xdrv_01_webserver.ino +++ b/tasmota/xdrv_01_webserver.ino @@ -1696,7 +1696,7 @@ void HandleWifiConfiguration(void) HtmlEscape(WiFi.SSID(indices[i])).c_str(), WiFi.channel(indices[i]), GetTextIndexed(encryption, sizeof(encryption), auth +1, kEncryptionType), - quality, WiFi.RSSI() + quality, WiFi.RSSI(indices[i]) ); delay(0);