Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zachweix committed Jan 29, 2024
1 parent 7b0b5dc commit f68cf2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HebrewCalendar/JewishCalendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ public function getDayOfChanukah() {
$day = $this->getJewishDayOfMonth();
if ($this->isChanukah()) {
if ($this->getJewishMonth() == JewishDate::KISLEV) {
return day - 24;
return $day - 24;
} else {
return self::isKislevShort($this->getJewishYear()) ? $day + 5 : $day + 6;
}
Expand Down

0 comments on commit f68cf2b

Please sign in to comment.