Update session keep alive to account for all new session tokens outside of BAU server session.
This commit is contained in:
parent
d2a1e316ba
commit
a5f5ed3cd1
@ -61,8 +61,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL)extendsAppSession {
|
- (BOOL)extendsAppSession {
|
||||||
NSNumber *extendSessionFlag = [self.responseInfoMap optionalNumberForKey:@"appSessionExtended"];
|
//NSNumber *extendSessionFlag = [self.responseInfoMap optionalNumberForKey:@"appSessionExtended"];
|
||||||
return extendSessionFlag == nil || [extendSessionFlag boolValue]; // Default to YES if the key does not exist.
|
//return extendSessionFlag == nil || [extendSessionFlag boolValue]; // Default to YES if the key does not exist.
|
||||||
|
|
||||||
|
// With the introduciton of NSA and OIDC tokens, we can no longer rely on BAU network touches to update our server session.
|
||||||
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - Deprecated
|
#pragma mark - Deprecated
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user