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.

    TypeError: curr.start.toISOString is not a function

    Scheduled Pinned Locked Moved Troubleshooting
    34 Posts 7 Posters 33.2k Views 6 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.
    • BangeeB Offline
      Bangee Module Developer
      last edited by

      please give me your Mailadress, I’ll share my Calendar with you. :-)

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

        Got it. Thanks. Will probably be able to look into this next week. Is that ok?

        1 Reply Last reply Reply Quote 0
        • BangeeB Offline
          Bangee Module Developer
          last edited by

          yeah, no problem. today my calendar is running. I’ve made no changes…

          strange, I’ve sent you the link to the working one.

          Thanks! :hand_splayed_tone1:

          1 Reply Last reply Reply Quote 0
          • BangeeB Offline
            Bangee Module Developer
            last edited by

            @MichMich did you find the problem?

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

              @Bangee Did not have any time to look into this … I’m sorry! Did I understand it correctly that you managed to solve it with the new calendar feed you sent me?

              1 Reply Last reply Reply Quote 0
              • BangeeB Offline
                Bangee Module Developer
                last edited by

                i’ve sent you the working on. i don’t know why, but most of the time, the calendar is working find.
                And sometimes there is this bug. I’ve sent you a diff file, with the differences between the files.

                1 Reply Last reply Reply Quote 0
                • BangeeB Offline
                  Bangee Module Developer
                  last edited by

                  @MichMich I still have these problems with office365 calender :-(
                  Did you found a solution for this issue?

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

                    Did you tryout the develop branch yet? It might include some changes that could help you.

                    1 Reply Last reply Reply Quote 0
                    • E Offline
                      eugenelai
                      last edited by

                      Any update on this? I’m also using office365 calendar and my Calendar randomly stopped working. I’ve tried the node debug.js and just get the below. @MichMich @KirAsh4

                      pi@rpi3:~/MagicMirror/modules/default/calendar $ sudo node debug.js
                      Create fetcher ...
                      Create fetcher done! 
                      [ { title: 'Max',
                          startDate: '1493568000000',
                          endDate: '1493654400000',
                          fullDayEvent: true,
                          firstYear: 1990 },
                        { title: 'Someone',
                          startDate: '1493740800000',
                          endDate: '1493827200000',
                          fullDayEvent: true,
                          firstYear: 2010 },
                        { title: 'Another',
                          startDate: '1493913600000',
                          endDate: '1494000000000',
                          fullDayEvent: true,
                          firstYear: 2000 },
                        { title: 'Event',
                          startDate: '1494086400000',
                          endDate: '1494172800000',
                          fullDayEvent: true,
                          firstYear: 1980 } ]
                      ------------------------------------------------------------
                      
                      1 Reply Last reply Reply Quote 0
                      • BangeeB Offline
                        Bangee Module Developer
                        last edited by

                        nope, still same here… :-(

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

                          I’m just starting with my MagicMirror today and am also having this issue.
                          I have two calendars,

                          1. Office 365 - gives this issue
                          2. google - loads, but doesn’t display all events in my calendar
                          1 Reply Last reply Reply Quote 0
                          • BangeeB Offline
                            Bangee Module Developer
                            last edited by

                            so now I found something new:

                            in my Calendar the DTSTART is set to:
                            DTSTART;TZID="(UTC+00:00) Monrovia, Reykjavik":20161028T200000

                            when I remove (UTC+00:00) everything works fine.

                            Then it looks like this:
                            DTSTART;TZID="Monrovia, Reykjavik":20161028T200000

                            I’ve used a PHP Script to do this.
                            @MichMich can you implement this in the js script? or what will I need to replace for testing?

                                    $ch = curl_init();
                            
                                    // set url
                                    curl_setopt($ch, CURLOPT_URL, "https://ical.url/calendar.ics");
                                    curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
                                    curl_setopt($ch, CURLOPT_HEADER, false);
                                    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                                    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
                                    curl_setopt($ch, CURLOPT_COOKIEJAR, "blabla");
                            
                                        // $output contains the output string
                                    $output = curl_exec($ch);
                            
                                    // close curl resource to free up system resources
                                    curl_close($ch);
                                    $response = new Response();
                            
                                    $output = str_replace('(UTC+00:00) ', '', $output);
                            
                                    $response->setContent($output);
                                    $response->setStatusCode(Response::HTTP_OK);
                            
                                    $response->headers->set('Content-type', 'text/calendar');
                            
                                    return $response;
                            
                            1 Reply Last reply Reply Quote 0
                            • MichMichM Offline
                              MichMich
                              last edited by

                              I suggest you fork the project, implement the fix that works for you and send me a PR. That way you can test it and others can benefit from your solution. :)

                              1 Reply Last reply Reply Quote 0
                              • BangeeB Offline
                                Bangee Module Developer
                                last edited by

                                Ok, :-) but actually I don’t no where to implement this in js :-)

                                Can someone give me a hint where to place my str_replace (UTC+00:00) in DTSTART variable?

                                Thanks ;-)

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

                                  So I ran into this problem and have a fix. I have uploaded the files to drop box for know. If this fixes others, i’ll look into updating the project.

                                  There are 2 files that need updated:
                                  /home/pi/MagicMirror/modules/default/calendar/vendor/node-ical.js
                                  line 33
                                  https://dl.dropboxusercontent.com/u/1184191/node-ical.js

                                  /home/pi/MagicMirror/modules/default/calendar/vendor/ical.js
                                  line 97
                                  https://dl.dropboxusercontent.com/u/1184191/ical.js

                                  1 Reply Last reply Reply Quote 0
                                  • BangeeB Offline
                                    Bangee Module Developer
                                    last edited by

                                    can you maybe post your solution? that would be great

                                    thanks bangee

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

                                      Apologies…my dropbox links dropped out.
                                      Here are the updated files:
                                      https://www.dropbox.com/sh/xvlusz1po4tvq24/AABF9ZuCL5j-ok4xfnYA5JsHa?dl=0

                                      This has not been tested with the latest version. I bought 6 different types of mirrors (glass and acrylic) and couldn’t find what i was looking for so gave up the dream for now…

                                      1 Reply Last reply Reply Quote 0
                                      • M Offline
                                        moshinh
                                        last edited by

                                        Does this work? Confirmed? I tried someone elses .js and it didnt :-(

                                        1 Reply Last reply Reply Quote 0
                                        • M Offline
                                          moshinh
                                          last edited by

                                          it does not :-(

                                          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