Read the statement by Michael Teeuw here.
Email-Mirror
-
@andyyy open the developers console (using keyboard its ctrl-shift-i) (or npm start dev)…
select the tab labeled console in that window, and then scroll up to find any errors (usually red text)the ‘loading’ is hard coded text the module displays until the api returns data and the info is updated…
so the api didn’t work
which should show in the console view -
Does this help? It was printed out in red:
Uncaught TypeError: console.log is not a function
at Class.socketNotificationReceived (:8080/modules/email//email.js:34)
at module.js:246
at r. (socketclient.js:25)
at r.emit (index.js:83)
at r.onevent (index.js:83)
at r.MMSocket.self.socket.onevent (socketclient.js:19)
at r.onpacket (index.js:83)
at r. (index.js:83)
at r.emit (index.js:83)
at r.ondecoded (index.js:83) -
@andyyy said in Email-Mirror:
/email.js:34
yes,
edit the email.js file in modules/email
and change line 34 from console.log(…), to Log.log(…)
then restart MagicMirror
-
Seems to work. What was/is the issue?
-
@andyyy developer coded it wrong.