MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Weather forecast only displays 'invalid date'

    Scheduled Pinned Locked Moved Solved Troubleshooting
    21 Posts 9 Posters 91.7k Views 8 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C Offline
      Canterrain
      last edited by

      No luck adding the comma unfortunately.

      You mentioned 2 things to try, what was the second?

      Thanks for looking at this.

      justjim1220J 1 Reply Last reply Reply Quote 0
      • yawnsY Offline
        yawns Moderator
        last edited by

        appid in currentweather module is missing a ’

        Time and date on your raspberry are fine, right?

        1 Reply Last reply Reply Quote 0
        • justjim1220J Offline
          justjim1220 Module Developer @Canterrain
          last edited by

          @canterrain

          Not sure how I missed that… weird, I swear I put it in there…

          Check the time and date of your devices…

          "Life's Too Short To Dance With Ugly People"
          Jim Hallock - 1995

          1 Reply Last reply Reply Quote 0
          • C Offline
            Canterrain
            last edited by Canterrain

            Thanks for the helpful suggestions.

            Date and time are correct on my pi, and the mirror even shows the right date and time.

            The config did have the missing ’ in current weather, I apparently accidentally deleted it when I was removing personal info. I edited the above to reflect the current status of my config file.

            This was working fine before. About the time I updated the mirror to latest version and added the motion detection module. But it didn’t happen immediately after those events. It was a few days later. I did find a logged issue (that was closed) describing the same thing, after updating the mirror.

            1 Reply Last reply Reply Quote 0
            • B Offline
              Bob
              last edited by Bob

              I’m having the same issue as @Canterrain

              0_1530532713034_912a9189-bc20-42b6-ae95-812dd4f864a1-image.png

              Snipp from Clock and Weather modules are below

               // Clock
              		{
              			module: "clock",
              			position: "top_center",
              			config: {
              				displayType: "digital",
              				displaySeconds: false,
              				showPeriod: true,
              				showPeriodUpper: false,
              				clockBold: false,
              				showDate: true,
              				showWeek: false,
              				dateFormat : "dddd, MMMM Do YYYY",
              			},
              		},
              
              // Calendar// Weather - ID from http://www.openweathermap.org/help/city_list.txt
              		{
              			module: "weatherforecast",
              			position: "top_left",
              			header: "7 Day Forecast for ",
              			config: {
              				fade: false,
              				maxNumberOfDays: 7,
              				showRainAmount: true,
              				colored: true,
              				locationID: "2655603",
              				appid: "xxx"
              			},
              		},
              

              Issue only occurred once I did an update to the MM system to v.2.4.0

              S 1 Reply Last reply Reply Quote 0
              • R Offline
                Richard238
                last edited by

                Same issue here

                1 Reply Last reply Reply Quote 0
                • K Offline
                  killing joke
                  last edited by

                  same here.

                  Is there a possibilty to erase the comma and country code behind the location in the header?!

                  1 Reply Last reply Reply Quote 0
                  • A Offline
                    AgP42 Project Sponsor Module Developer
                    last edited by

                    Hello,

                    same problem for me since the update in 2.4.0… So general update issue probably (looking forward for a solution !:slightly_smiling_face: )

                    To answer @killing-joke said in Weather forecast only displays ‘invalid date’:

                    same here.

                    Is there a possibilty to erase the comma and country code behind the location in the header?!

                    I did change the following on the file “/MagicMirror/modules/default/weatherferecast/weatherforecast.js” :

                    // Override getHeader method.
                    getHeader: function() {
                    if (this.config.appendLocationNameToHeader) {
                    //line to change
                    //return this.data.header + " " + this.fetchedLocationName;
                    return "Prévisions Météo Nogent"; // write here what you want...
                    }
                    
                    return this.data.header;
                    }, 
                    

                    Here is the result :

                    20180702_220235_resized

                    You can of course change the line on the way you want to remove only the part you need.

                    K 1 Reply Last reply Reply Quote 0
                    • K Offline
                      killing joke @AgP42
                      last edited by killing joke

                      @agp42 said in Weather forecast only displays ‘invalid date’:

                      I did change the following on the file “/MagicMirror/modules/default/weatherferecast/weatherforecast.js” :

                      Thanks a lot. I got it.

                      I found a solution on https://github.com/MichMich/MagicMirror/commit/0e2e8d2e2aca2f8d0f1f2eb7b213577fcc4f623a
                      But I had to change the lines 338 and 339 instead of 336 and 337

                      var day = moment(forecast.dt_txt, "YYYY-MM-DD hh:mm:ss").format("ddd");
                      var hour = moment(forecast.dt_txt, "YYYY-MM-DD hh:mm:ss").format("H");
                      

                      into

                      var day;
                      var hour;
                      if(!!forecast.dt_txt) {
                      	day = moment(forecast.dt_txt, "YYYY-MM-DD hh:mm:ss").format("ddd");
                      	hour = moment(forecast.dt_txt, "YYYY-MM-DD hh:mm:ss").format("H");
                      } else {
                      	day = moment(forecast.dt, "X").format("ddd");
                      	hour = moment(forecast.dt, "X").format("H");
                      }
                      

                      It works for my MM.

                      A 1 Reply Last reply Reply Quote 0
                      • C Offline
                        Canterrain
                        last edited by Canterrain

                        Looks like the recent changes here are the culprit. They already figured out what needs to be changed, fixed in an upcoming update. Pull request is in. Get ready to update your mirrors.

                        1 Reply Last reply Reply Quote 0
                        • S Offline
                          SoleLo @Bob
                          last edited by

                          @bob how did you get you icons to change color as well as your text?

                          1 Reply Last reply Reply Quote 0
                          • A Offline
                            AgP42 Project Sponsor Module Developer @killing joke
                            last edited by

                            @killing-joke said in Weather forecast only displays ‘invalid date’:

                            I found a solution on https://github.com/MichMich/MagicMirror/commit/0e2e8d2e2aca2f8d0f1f2eb7b213577fcc4f623a
                            But I had to change the lines 338 and 339 instead of 336 and 337

                            var day = moment(forecast.dt_txt, "YYYY-MM-DD hh:mm:ss").format("ddd");
                            var hour = moment(forecast.dt_txt, "YYYY-MM-DD hh:mm:ss").format("H");
                            

                            into

                            var day;
                            var hour;
                            if(!!forecast.dt_txt) {
                            	day = moment(forecast.dt_txt, "YYYY-MM-DD hh:mm:ss").format("ddd");
                            	hour = moment(forecast.dt_txt, "YYYY-MM-DD hh:mm:ss").format("H");
                            } else {
                            	day = moment(forecast.dt, "X").format("ddd");
                            	hour = moment(forecast.dt, "X").format("H");
                            }
                            

                            It works for my MM.

                            Works fine, thank you for the advice !

                            1 Reply Last reply Reply Quote 0
                            • MichMichM Offline
                              MichMich
                              last edited by MichMich

                              Ive just merged the fix by @jannekalliola into the develop branch which should solve this issue: https://github.com/MichMich/MagicMirror/pull/1341

                              Can you guys please test this develop branch? If this solves the issue, I’ll release an intermediate 2.4.1 release.

                              To tryout the develop branch, use the following git command on your terminal (from within the MagicMirror folder):

                              git checkout develop 
                              git pull
                              

                              Thanks for testing!

                              1 Reply Last reply Reply Quote 0
                              • S Offline
                                SoleLo
                                last edited by

                                I edited the code snippet and now my time is stuck on 8:01 on the current forecast…

                                1 Reply Last reply Reply Quote 0
                                • R Offline
                                  Richard238
                                  last edited by

                                  Stuck time might be the sunset time. Mine is 21:17, so not stuck al all.

                                  S 1 Reply Last reply Reply Quote 0
                                  • S Offline
                                    SoleLo @Richard238
                                    last edited by

                                    @richard238 hahaha you are right, I’m a imbecile.

                                    1 Reply Last reply Reply Quote 0
                                    • B Offline
                                      Bob
                                      last edited by

                                      Awesome, v2.4.1 fixed it

                                      Thanks @MichMich :)

                                      1 Reply Last reply Reply Quote 0

                                      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                      With your input, this post could be even better 💗

                                      Register Login
                                      • 1
                                      • 2
                                      • 1 / 2
                                      • First post
                                        Last post
                                      Enjoying MagicMirror? Please consider a donation!
                                      MagicMirror created by Michael Teeuw.
                                      Forum managed by Sam, technical setup by Karsten.
                                      This forum is using NodeBB as its core | Contributors
                                      Contact | Privacy Policy