File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,9 @@ ReferenceCountedFutureImpl* AppCheckInternal::future() {
5353}
5454
5555bool AppCheckInternal::HasValidCacheToken () const {
56- // Get the current time, in milliseconds
57- int64_t current_time = std::time (nullptr ) * 1000 ;
56+ // Get the current time, in milliseconds (Done in two lines because of x86)
57+ int64_t current_time = std::time (nullptr );
58+ current_time *= 1000 ;
5859 // TODO(amaurice): Add some additional time to the check
5960 return cached_token_.expire_time_millis > current_time;
6061}
Original file line number Diff line number Diff line change @@ -629,6 +629,7 @@ code.
629629## Release Notes
630630### Upcoming Release
631631- Changes
632+ - App Check (Desktop): Fixed expired tokens being cached on 32-bit systems.
632633 - Remote Config (Desktop): Fixed handling of time zones on Windows when the
633634 time zone name in the current system language contains an accented
634635 character or apostrophe. This adds a requirement for applications using
You can’t perform that action at this time.
0 commit comments