From 81ac02033dd137e81a9f22404e07521a135e73b5 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 02:17:19 -0500 Subject: [PATCH] fix: use std::uint64_t for token expiration timestamp in OverteAuth class --- src/OverteAuth.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OverteAuth.hpp b/src/OverteAuth.hpp index c669f7e..da2aaf3 100644 --- a/src/OverteAuth.hpp +++ b/src/OverteAuth.hpp @@ -31,7 +31,7 @@ private: std::string m_accessToken; std::string m_refreshToken; std::string m_username; - uint64_t m_tokenExpiresAt{0}; // Unix timestamp + std::uint64_t m_tokenExpiresAt{0}; // Unix timestamp // libcurl callback for writing response data static size_t writeCallback(void* contents, size_t size, size_t nmemb, void* userp);