Updated review comments

This commit is contained in:
Subramaniam, Ramya 2019-06-13 00:05:34 +05:30
parent 262f9c9d5b
commit 1b2dc9281a

View File

@ -862,7 +862,7 @@
//Needs further enhancements based on the flags.
BOOL shouldTriggerFromCache = [postCallsDict boolForKey:@"shouldTriggerFromCache"];
//Check if page is not from cache
if (!loadObject.pageDataFromCache || (shouldTriggerFromCache && loadObject.pageDataFromCache)) {
if (!loadObject.pageDataFromCache || shouldTriggerFromCache) {
[actionList enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
[[MVMCoreActionHandler sharedActionHandler] handleActionWithDictionary:obj additionalData:nil delegateObject:nil];
}];