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
I noticed that setTimeCorrectionOffset() exists but is never used to set the correct offset. I think the function should be called in __getTime() like:
public static function __getTime()
{
self::setTimeCorrectionOffset(); // Set correct offset
return time() + self::$__timeOffset;
}
Without this, the generated URI in getAuthenticatedURL() will have wrong expiry time.
The text was updated successfully, but these errors were encountered:
I noticed that
setTimeCorrectionOffset()
exists but is never used to set the correct offset. I think the function should be called in__getTime()
like:Without this, the generated URI in
getAuthenticatedURL()
will have wrong expiry time.The text was updated successfully, but these errors were encountered: