From 3be8539e03672812bca3398a7059901188aeec4b Mon Sep 17 00:00:00 2001 From: PixieDust <111846546+PizieDust@users.noreply.github.com> Date: Wed, 3 Jul 2024 10:52:42 +0100 Subject: [PATCH] Update user_model.ml Co-authored-by: Hannes Mehnert --- user_model.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_model.ml b/user_model.ml index d42be283..204385e3 100644 --- a/user_model.ml +++ b/user_model.ml @@ -3,7 +3,7 @@ module Rng = Mirage_crypto_rng type token = { token_type : string; access_token : string; - expires_in : int; (* After 1 hour (3660 seconds) of inactivity *) + expires_in : int; (* In seconds, so after 1 hour would be 3600 seconds of inactivity *) } let clean_string s = (* Remove backslashes and double quotes from the string *)