MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord

    wrong age in calendar module

    Troubleshooting
    2
    4
    1818
    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.
    • chamaeleon82
      chamaeleon82 last edited by

      hi,

      I´ve created google calendar as a birthday calendar. Birthday is created as an appointment (whole day, repeat every year). Start date is the birthday and year of birth.
      My problem is that the display of age is a year less. So instead of 35 years old only 34 is displayed (E.g. March 22th.).
      alt text
      Does anyone know this problem?

      P 1 Reply Last reply Reply Quote 0
      • P
        pert.no.more @chamaeleon82 last edited by

        @chamaeleon82 Same here. There is a logical bug in the calculation of “yearDiff” in calendar.js line 129-130. It calculates “CurrentYear” - “FirstYear of event” instead “NextOccurrenceYear of event” - “FirstYear of event”. I’m not too familiar with js, but the fix should be something like yearDiff = event.startDate.getFullYear() - event.firstYear.

        1 Reply Last reply Reply Quote 0
        • P
          pert.no.more last edited by

          for me it worked by replacing in line 129:

          new Date().getFullYear()

          with

          new Date(parseInt(event.startDate)).getFullYear()

          1 Reply Last reply Reply Quote 0
          • chamaeleon82
            chamaeleon82 last edited by

            thank you, will soon try.

            1 Reply Last reply Reply Quote 0
            • 1 / 1
            • First post
              Last post
            Enjoying MagicMirror? Please consider a donation!
            MagicMirror created by Michael Teeuw.
            Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
            This forum is using NodeBB as its core | Contributors
            Contact | Privacy Policy