hey,
sorry for taking so long to reply, life found a way to keep me busy! Just wanted to say thanks for the quick reply/fix for my original issue.
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
S
Posts
-
RE: MMM-MovieInfo
-
RE: MMM-MovieInfo
Hi, I just recently discovered MM2 & have started on putting it together. This is a fresh install of MM2 & the MovieInfo module however the module is not getting the images.
This is my config.js{ module: 'MMM-MovieInfo', position: 'bottom_left', config: { api_key: "" } },
The module shows everything but the image or Poster art. Inspecting the page in Google Chrome results in this appearing:
GET https://image.tmdb.org/t/p/w185_and_h278_bestv2/undefined 404 ()
Further examination of the movieinfo.js file shows
const poster = document.createElement('img'); poster.classList.add('poster'); poster.src = `https://image.tmdb.org/t/p/w185_and_h278_bestv2/${movie.posterPath}`; wrapper.appendChild(poster);
here’s a SS via vnc:
How can I fix this issue? I know nothing of javascript or programming unfortunately so baby steps in explaining a fix please :)