A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Problem MMM-syslog in Midori
-
i have fix it.
edit MMM-syslog.js
replace line 44
setInterval(() => {
with
setInterval(function(){
-
@gizmo90
i have the same issue, but the change you mention doesn’t fix it.
any hints?TypeError: Cannot read property 'push' of undefined
but the http-request is sent successfully:
{"status":"success","payload":{"type":"ALERT","message":"Testalert","silent":false,"timestamp":"2017-10-25T17:36:57.487Z"}}
regards,
astrakid -
test this
setInterval(function(){ this.updateDom(); }, 60000);
instead of
setInterval(() => {
this.updateDom(60000); -
@gizmo90 said in Problem MMM-syslog in Midori:
setInterval(function(){ this.updateDom(); }, 60000);
tried that already, but it doesn’t solve the issue.
-
found the issue: if the module is set to “top_bar”, then it forces this error. “top_right” works fine.