mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-18 15:20:15 +01:00
Fix deprecation error
Use `DateTime::from_naive_utc_and_offset` instead of `DateTime::from_utc`
This commit is contained in:
parent
aca9f9583d
commit
82dbee4bbb
2 changed files with 9 additions and 5 deletions
|
@ -269,7 +269,7 @@ pub(crate) fn serde_timestamp<E: serde::de::Error>(
|
|||
|
||||
NaiveDateTime::from_timestamp_opt(timestamp, 0)
|
||||
.ok_or_else(|| E::custom("invalid timestump"))
|
||||
.map(|naive| DateTime::from_utc(naive, Utc))
|
||||
.map(|naive| DateTime::from_naive_utc_and_offset(naive, Utc))
|
||||
}
|
||||
|
||||
pub(crate) mod serde_opt_date_from_unix_timestamp {
|
||||
|
@ -305,8 +305,10 @@ pub(crate) mod serde_opt_date_from_unix_timestamp {
|
|||
|
||||
{
|
||||
let json = r#"{"date":1}"#;
|
||||
let expected =
|
||||
DateTime::from_utc(chrono::NaiveDateTime::from_timestamp_opt(1, 0).unwrap(), Utc);
|
||||
let expected = DateTime::from_naive_utc_and_offset(
|
||||
chrono::NaiveDateTime::from_timestamp_opt(1, 0).unwrap(),
|
||||
Utc,
|
||||
);
|
||||
|
||||
let Struct { date } = serde_json::from_str(json).unwrap();
|
||||
assert_eq!(date, Some(expected));
|
||||
|
|
|
@ -395,8 +395,10 @@ mod test {
|
|||
#[test]
|
||||
fn message() {
|
||||
let timestamp = 1_569_518_342;
|
||||
let date =
|
||||
DateTime::from_utc(NaiveDateTime::from_timestamp_opt(timestamp, 0).unwrap(), Utc);
|
||||
let date = DateTime::from_naive_utc_and_offset(
|
||||
NaiveDateTime::from_timestamp_opt(timestamp, 0).unwrap(),
|
||||
Utc,
|
||||
);
|
||||
|
||||
let json = r#"{
|
||||
"update_id":892252934,
|
||||
|
|
Loading…
Reference in a new issue