You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(auth): resolve format string mismatch in ASF timestamp generation (#4095)
Fixes#4073
Changed timestamp generation in CognitoUserPoolASF.prepareJsonPayload to use Int64 instead of Double to match the %lli format specifier. This resolves the format string mismatch warning that was appearing during sign-in operations.
The issue was caused by floor() returning a Double while the format string expected an Int64. Converting directly to Int64 maintains the same functionality while eliminating the type mismatch.
0 commit comments