Merge branch 'bugfix/missing_error_screen' into 'develop'

add missing error screen

### Summary
Fix to error hanging.

Co-authored-by: Scott Pfeil <Scott.Pfeil3@verizonwireless.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core/-/merge_requests/309
This commit is contained in:
Hedden, Kyle Matthew 2024-01-31 14:53:39 +00:00
commit b0bc8994ee

View File

@ -758,6 +758,9 @@
// Allows the view controller to handle specific errors (such as ensure it has all the required data). // Allows the view controller to handle specific errors (such as ensure it has all the required data).
shouldContinue = [viewController shouldFinishProcessingLoad:loadObject error:&error]; shouldContinue = [viewController shouldFinishProcessingLoad:loadObject error:&error];
if (error) {
error = [[MVMCoreLoadHandler sharedGlobal] attachLoadInformation:loadObject toError:error];
}
if (!shouldContinue) { if (!shouldContinue) {
viewController = nil; viewController = nil;
} }