Fix constant name
This commit is contained in:
parent
ab6aa63d3e
commit
04d6f1318f
@ -147,4 +147,4 @@ pub const THUMB_HEIGHT: u32 = 350;
|
|||||||
pub const ACCOMMODATIONS_RESERVATIONS_CALENDARS_TOKENS_LEN: usize = 50;
|
pub const ACCOMMODATIONS_RESERVATIONS_CALENDARS_TOKENS_LEN: usize = 50;
|
||||||
|
|
||||||
/// Minimum interval before calendar used time update
|
/// Minimum interval before calendar used time update
|
||||||
pub const TIME_USED_UPDATE_MIN_INTERVAL: Duration = Duration::from_secs(60);
|
pub const CAL_URL_TIME_USED_UPDATE_MIN_INTERVAL: Duration = Duration::from_secs(60);
|
||||||
|
@ -579,7 +579,8 @@ impl AccommodationReservationCalendar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn should_update_last_used(&self) -> bool {
|
pub fn should_update_last_used(&self) -> bool {
|
||||||
(self.time_used + constants::TIME_USED_UPDATE_MIN_INTERVAL.as_secs() as i64) < time() as i64
|
(self.time_used + constants::CAL_URL_TIME_USED_UPDATE_MIN_INTERVAL.as_secs() as i64)
|
||||||
|
< time() as i64
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user