We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cca7c79 commit 5c3f03aCopy full SHA for 5c3f03a
.github/ISSUE_TEMPLATE/Bug Report.yml
@@ -30,6 +30,7 @@ body:
30
- v2.0 - v2.8
31
- v2.9
32
- v2.10
33
+ - v2.12.0
34
- development build (include version in what happened)
35
default: 0
36
validations:
meshchatlib.lua
@@ -89,7 +89,10 @@ function zone_name()
89
if nixio.fs.access(servfile) then
90
for line in io.lines(servfile)
91
do
92
- local zone = line:match("^(.*)|.*|.*|.*|.*|meshchat$")
+ -- this will match the new service names with the icon metadata
93
+ -- in this case we are using a space or a pipe to terminate
94
+ -- the service name
95
+ local zone = line:match("^(.-)[%s%|].*|meshchat$")
96
if zone then
97
return zone
98
end
0 commit comments