Merge branch 'feature/session_timer_keepalive_fix' into 'develop'
Update session keep alive to account for all new session tokens outside of BAU server session. See merge request BPHV_MIPS/mvm_core!216
This commit is contained in:
commit
8bfea9b093
@ -61,8 +61,11 @@
|
||||
}
|
||||
|
||||
- (BOOL)extendsAppSession {
|
||||
NSNumber *extendSessionFlag = [self.responseInfoMap optionalNumberForKey:@"appSessionExtended"];
|
||||
return extendSessionFlag == nil || [extendSessionFlag boolValue]; // Default to YES if the key does not exist.
|
||||
//NSNumber *extendSessionFlag = [self.responseInfoMap optionalNumberForKey:@"appSessionExtended"];
|
||||
//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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user