diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m index 382c5ca..e2ab27b 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadRequestOperation.m @@ -758,6 +758,9 @@ // Allows the view controller to handle specific errors (such as ensure it has all the required data). shouldContinue = [viewController shouldFinishProcessingLoad:loadObject error:&error]; + if (error) { + error = [[MVMCoreLoadHandler sharedGlobal] attachLoadInformation:loadObject toError:error]; + } if (!shouldContinue) { viewController = nil; }