Skip to content

Commit

Permalink
Update absolute path to 2018 syntax for WASM/wasmbind feature (chrono…
Browse files Browse the repository at this point in the history
  • Loading branch information
danielalvsaaker authored and botahamec committed May 26, 2022
1 parent 91f5c9e commit bc9316c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/offset/local.rs
Expand Up @@ -155,7 +155,7 @@ impl TimeZone for Local {
let mut local = local.clone();
// Get the offset from the js runtime
let offset = FixedOffset::west((js_sys::Date::new_0().get_timezone_offset() as i32) * 60);
local -= ::Duration::seconds(offset.local_minus_utc() as i64);
local -= crate::Duration::seconds(offset.local_minus_utc() as i64);
LocalResult::Single(DateTime::from_utc(local, offset))
}

Expand Down

0 comments on commit bc9316c

Please sign in to comment.