Merge branch 'mkirk/fix-movie-confirmation-preview' into hotfix/2.19.5

This commit is contained in:
Michael Kirk 2018-01-19 15:34:24 -05:00
commit 9ee293227d

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];