Fix parser/generator tests

This commit is contained in:
Lea Anthony
2023-09-08 12:03:55 +10:00
parent 00feccbb77
commit 965f939967
11 changed files with 32 additions and 41 deletions
@@ -18,7 +18,7 @@ func (m *MessageProcessor) processSystemMethod(method int, rw http.ResponseWrite
case SystemIsDarkMode:
m.json(rw, globalApplication.IsDarkMode())
default:
m.httpError(rw, "Unknown system method: %s", method)
m.httpError(rw, "Unknown system method: %d", method)
}
m.Info("Runtime:", "method", "System."+systemMethodNames[method])