OHSUCMP / coach

web application frontend for OHSU HTN U18 grant
2 stars 0 forks source link

bug fix: Calendar.HOUR to Calendar.HOUR_OF_DAY #205

Closed mattStorer closed 2 months ago

mattStorer commented 2 months ago

there are usages of Calendar.HOUR in COACH where we set that to 0, which is intended to represent the start of the day. However, it turns out that HOUR represents the hour of the morning or afternoon, and setting this value to 0 has the effect of becoming 12:00 noon.

References to Calendar.HOUR need to be changed to Calendar.HOUR_OF_DAY

mattStorer commented 2 months ago

this is fixed