Skip to content

Commit

Permalink
fixup DST
Browse files Browse the repository at this point in the history
  • Loading branch information
jamessimone committed Oct 29, 2024
1 parent be50671 commit 03c6fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup/core/classes/RollupDateLiteral.cls
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ public without sharing abstract class RollupDateLiteral {
private class NextWeekLiteral extends RollupDateLiteral {
public NextWeekLiteral() {
this.ref = getRelativeDatetime(System.today().toStartOfWeek().addDays(7), START_TIME);
this.bound = getRelativeDatetime(this.ref.addDays(6).date(), END_TIME);
this.bound = getRelativeDatetime(this.ref.addDays(6).dateGmt(), END_TIME);
}
}

Expand Down

0 comments on commit 03c6fdd

Please sign in to comment.