diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m index ce35730..00d94fd 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m @@ -857,6 +857,7 @@ NSDictionary *postCallsDict = [loadObject.pageJSON dict:@"postLoadActions"]; if (postCallsDict) { NSArray *actionList = [postCallsDict array:@"actionList"]; + //TODO needs to create operation queue based on concurrent flag BOOL isConcurrent = [postCallsDict boolForKey:@"concurrent"]; //Needs further enhancements based on the flags. BOOL shouldTriggerFromCache = [postCallsDict boolForKey:@"shouldTriggerFromCache"]; @@ -866,6 +867,7 @@ [[MVMCoreActionHandler sharedActionHandler] handleActionWithDictionary:obj additionalData:nil delegateObject:nil]; }]; } + //Needs to handle when page is from cache. } }