summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-compat/luasrc/model/network.lua
diff options
context:
space:
mode:
authorPaul Donald <newtwen@gmail.com>2023-12-18 00:22:05 +0100
committerGitHub <noreply@github.com>2023-12-18 00:22:05 +0100
commitc3fc80c92a2ed30214ed039c6189e2c06023117a (patch)
tree1b3dcdb919b53ca4ee8e12a959e95423c17037c7 /modules/luci-compat/luasrc/model/network.lua
parent8b651996ff25cff94cf37608d775f0cbf7fd177a (diff)
parente02df6505f63dc1670a3482750b8d6acb34aaceb (diff)
Merge pull request #6755 from EvanTheB/modemaster
luci-base: Display 'Access Point' in the wireless page instead of 'Master'
Diffstat (limited to 'modules/luci-compat/luasrc/model/network.lua')
-rw-r--r--modules/luci-compat/luasrc/model/network.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-compat/luasrc/model/network.lua b/modules/luci-compat/luasrc/model/network.lua
index b9ef19b171..1c25f899da 100644
--- a/modules/luci-compat/luasrc/model/network.lua
+++ b/modules/luci-compat/luasrc/model/network.lua
@@ -1761,7 +1761,7 @@ function wifinet.active_mode(self)
if m == "ap" then m = "Master"
elseif m == "sta" then m = "Client"
elseif m == "adhoc" then m = "Ad-Hoc"
- elseif m == "mesh" then m = "Mesh"
+ elseif m == "mesh" then m = "Mesh Point"
elseif m == "monitor" then m = "Monitor"
end