MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. SilentJbob1680
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    S
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Groups 0

    SilentJbob1680

    @SilentJbob1680

    1
    Reputation
    449
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    SilentJbob1680 Unfollow Follow

    Best posts made by SilentJbob1680

    • 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:
      0_1489047572649_f4b39b46cf100dc381bae517ffa819b0.png
      How can I fix this issue? I know nothing of javascript or programming unfortunately so baby steps in explaining a fix please :)

      posted in Entertainment
      S
      SilentJbob1680

    Latest posts made by SilentJbob1680

    • RE: MMM-MovieInfo

      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.

      posted in Entertainment
      S
      SilentJbob1680
    • 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:
      0_1489047572649_f4b39b46cf100dc381bae517ffa819b0.png
      How can I fix this issue? I know nothing of javascript or programming unfortunately so baby steps in explaining a fix please :)

      posted in Entertainment
      S
      SilentJbob1680