We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1e326 commit 68f1708Copy full SHA for 68f1708
src/scripts/extensions/authenticationHelper.ts
@@ -184,6 +184,6 @@ export class AuthenticationHelper {
184
*/
185
protected isThirdPartyCookiesEnabled(userInfo: UserInfoData): boolean {
186
// Note that we are returning true by default to ensure the N-1 scenario.
187
- return userInfo.cookieInRequest ? userInfo.cookieInRequest : true;
+ return userInfo.cookieInRequest !== undefined ? userInfo.cookieInRequest : true;
188
}
189
0 commit comments