From 04d6f1318f30edba363e35877b6b4960585d61e6 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 22 Jun 2024 23:21:54 +0200 Subject: [PATCH] Fix constant name --- geneit_backend/src/constants.rs | 2 +- geneit_backend/src/models.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/geneit_backend/src/constants.rs b/geneit_backend/src/constants.rs index af11c10..e115515 100644 --- a/geneit_backend/src/constants.rs +++ b/geneit_backend/src/constants.rs @@ -147,4 +147,4 @@ pub const THUMB_HEIGHT: u32 = 350; pub const ACCOMMODATIONS_RESERVATIONS_CALENDARS_TOKENS_LEN: usize = 50; /// 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); diff --git a/geneit_backend/src/models.rs b/geneit_backend/src/models.rs index ab8b328..0ccc0a6 100644 --- a/geneit_backend/src/models.rs +++ b/geneit_backend/src/models.rs @@ -579,7 +579,8 @@ impl AccommodationReservationCalendar { } 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 } }