Skip to content

Commit

Permalink
Fix same date differ. Ugh!
Browse files Browse the repository at this point in the history
  • Loading branch information
mjradwin committed Jul 17, 2024
1 parent dc7c050 commit c5b8dc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sedrot.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ function doTriennialDiffer(a, b) {
if (a.readSeparately && b.readSeparately) {
return false;
}
return !a.date.isSameDate(b);
return !a.date.isSameDate(b.date);
}

/**
Expand Down

0 comments on commit c5b8dc0

Please sign in to comment.