We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo today
1 parent 335f263 commit 778dae2Copy full SHA for 778dae2
src/template/day.rs
@@ -3,7 +3,9 @@ use std::fmt::Display;
3
use std::str::FromStr;
4
5
#[cfg(feature = "today")]
6
-use chrono::{Datelike, Local};
+use chrono::{Datelike, FixedOffset, Utc};
7
+
8
+const SERVER_UTC_OFFSET: i32 = -5;
9
10
/// A valid day number of advent (i.e. an integer in range 1 to 25).
11
///
@@ -44,7 +46,8 @@ impl Day {
44
46
impl Day {
45
47
/// Returns the current day if it's between the 1st and the 25th of december, `None` otherwise.
48
pub fn today() -> Option<Self> {
- let today = Local::now();
49
+ let offset = FixedOffset::east_opt(SERVER_UTC_OFFSET * 3600)?;
50
+ let today = Utc::now().with_timezone(&offset);
51
if today.month() == 12 && today.day() <= 25 {
52
Self::new(u8::try_from(today.day()).ok()?)
53
} else {
0 commit comments