Fix confirmation preview

// FREEBIE
This commit is contained in:
Michael Kirk 2018-01-19 12:18:17 -05:00
parent 497b8b9605
commit 3a5fa63cd6

View file

@ -355,7 +355,10 @@ NS_ASSUME_NONNULL_BEGIN
- (void)updateFooterBarButtonItemsWithIsPlayingVideo:(BOOL)isPlayingVideo
{
OWSAssert(self.footerBar);
if (!self.footerBar) {
DDLogVerbose(@"%@ No footer bar visible.", self.logTag);
return;
}
NSMutableArray<UIBarButtonItem *> *toolbarItems = [NSMutableArray new];