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.

    Calendar events showing on wrong day.

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    66 Posts 3 Posters 21.9k Views 3 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.
    • S Offline
      sdetweil @Coolie1101
      last edited by sdetweil

      @coolie1101 after copying your new cal entry to ics, and running… it looks good to me…
      (with the edited calendarutils.js) (I am central US time)

      this ics with the other persons info in too

      Screenshot at 2021-11-19 07-59-58.png

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      Coolie1101C 2 Replies Last reply Reply Quote 0
      • Coolie1101C Offline
        Coolie1101 @sdetweil
        last edited by Coolie1101

        @sdetweil Maybe I’m executing it in the wrong order, do i need to “pm2 start mm” and then do “npm start >somefile.txt”? eitherway, there isn’t error log entries for calendar.

        0|mm  | [19.11.2021 08:55.52.292] [LOG]
        0|mm  | Create new calendarfetcher for url: http://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics - Interval: 900000
        0|mm  | [19.11.2021 08:55.52.362] [LOG]
        0|mm  | Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/p07n98go11onam************%40group.calendar.google.com/public/basic.ics - Interval: 900000
        0|mm  | [19.11.2021 08:55.52.434] [LOG]
        0|mm  | Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/olrn3c2sf2k023************%40group.calendar.google.com/private-7d055c9f2a8b6bbfe674************/basic.ics - Interval: 900000
        0|mm  | [19.11.2021 08:55.52.448] [LOG]
        0|mm  | Create new calendarfetcher for url: https://calendar.google.com/calendar/ical/mvdgcjroualavv************%40group.calendar.google.com/public/basic.ics - Interval: 900000
        

        Calendar Display
        f7cd3c06-7999-4e0a-a697-53cdfe2a225a-image.png

        S 1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @Coolie1101
          last edited by

          @coolie1101 you cant run with pm2 AND with npm start

          so, thats why I said

          pm2 stop all
          

          THEN (in the MagicMirror folder)

          npm start
          

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          Coolie1101C 1 Reply Last reply Reply Quote 0
          • Coolie1101C Offline
            Coolie1101 @sdetweil
            last edited by

            @sdetweil said in Calendar events showing on wrong day.:

            (I am central US time)

            Don’t sleep much :grinning_face:

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              sdetweil @Coolie1101
              last edited by

              @coolie1101 said in Calendar events showing on wrong day.:

              Don’t sleep much

              its past 8am… been up since 6 (cat wakes me reliably)

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 1
              • Coolie1101C Offline
                Coolie1101 @sdetweil
                last edited by

                @sdetweil said in Calendar events showing on wrong day.:

                @coolie1101 you cant run with pm2 AND with npm start

                so, thats why I said

                pm2 stop all
                

                THEN (in the MagicMirror folder)

                npm start
                

                Got it, I edited the “calendarutils.js” file again and restarted, no error or calendar entries in log, but the display is the same.

                S 2 Replies Last reply Reply Quote 0
                • S Offline
                  sdetweil @Coolie1101
                  last edited by

                  @coolie1101 weird

                  edit config.js and change

                  	logLevel: ["INFO", "LOG", "WARN", "ERROR"]
                  

                  to
                  this

                  	logLevel: ["INFO", "LOG", "WARN","ERROR","DEBUG"]
                  

                  and run again, then u will see the calendar processing

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  Coolie1101C 1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @Coolie1101
                    last edited by

                    @coolie1101 and a reminder, there are TWO sections of code u have to comment out

                    two areas of two lines each

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    Coolie1101C 1 Reply Last reply Reply Quote 0
                    • Coolie1101C Offline
                      Coolie1101 @sdetweil
                      last edited by

                      @sdetweil Yes.

                      Line 348 & 358

                      //								if (event.start.tz === moment.tz.guess()) {
                      									// if the date hour is less than the offset
                      									if (24 - dh < Math.abs(dateoffset / 60)) {
                      										// apply the correction to the date/time back to right day
                      										date = new Date(date.getTime() + Math.abs(24 * 60) * 60000);
                      										// the duration was calculated way back at the top before we could correct the start time..
                      										// fix it for this event entry
                      										//duration = 24 * 60 * 60 * 1000;
                      										Log.debug("new recurring date2 is " + date);
                      									}
                      //								}
                      

                      Line 376 & 386

                      //								if (event.start.tz === moment.tz.guess()) {
                      									// if the date hour is less than the offset
                      									if (24 - dh < Math.abs(dateoffset / 60)) {
                      										// apply the correction to the date/time back to right day
                      										date = new Date(date.getTime() + Math.abs(24 * 60) * 60000);
                      										// the duration was calculated way back at the top before we could correct the start time..
                      										// fix it for this event entry
                      										//duration = 24 * 60 * 60 * 1000;
                      										Log.debug("new recurring date2 is " + date);
                      									}
                      //								}
                      
                      1 Reply Last reply Reply Quote 0
                      • Coolie1101C Offline
                        Coolie1101 @sdetweil
                        last edited by

                        @sdetweil said in Calendar events showing on wrong day.:

                        and run again, then u will see the calendar processing

                        Will it work like this “npm start >cal_test_log.txt | grep calendar”?

                        S 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 6
                        • 7
                        • 3 / 7
                        • 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