diff --git a/src/_wwwServer.ino b/src/_wwwServer.ino
index 94cb2d4..a07d1c2 100644
--- a/src/_wwwServer.ino
+++ b/src/_wwwServer.ino
@@ -1307,7 +1307,7 @@ static void systemStatus()
response +="
Set | ";
response +="";
- response +="Gateway ID | ";
+ response +="
Gateway EUI | ";
response +="";
if (MAC_array[0]< 0x10) response +='0'; response +=String(MAC_array[0],HEX); // The MAC array is always returned in lowercase
if (MAC_array[1]< 0x10) response +='0'; response +=String(MAC_array[1],HEX);
|