This commit is contained in:
Pfeil, Scott Robert 2020-10-15 17:03:10 -04:00
parent 48e3a5d187
commit abc99a14ac

View File

@ -61,7 +61,9 @@
if (self.isExecuting && !self.isCancelled && !self.isPaused) {
[self updateDismissTimer];
UIView <MVMCoreTopAlertViewProtocol>*topAlertView = [[MVMCoreObject sharedInstance].globalTopAlertDelegate getTopAlertView];
[topAlertView updateTopAlertWith:topAlertObject];
if ([topAlertView respondsToSelector:@selector(updateTopAlertWith:)]) {
[topAlertView updateTopAlertWith:topAlertObject];
}
}
}