소스 검색

make sure also VideoInviteCells are shown with transparent background as previews

cyberta 3 년 전
부모
커밋
b5b1354be0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      deltachat-ios/Chat/ChatViewController.swift

+ 1 - 1
deltachat-ios/Chat/ChatViewController.swift

@@ -1552,7 +1552,7 @@ class ChatViewController: UITableViewController {
         guard let index = messageIds.firstIndex(of: messageId.integerValue) else { return nil }
         let indexPath = IndexPath(row: index, section: 0)
 
-        guard let cell = tableView.cellForRow(at: indexPath) as? BaseMessageCell else { return nil }
+        guard let cell = tableView.cellForRow(at: indexPath) else { return nil }
 
         // clear background, so that background image is still visible
         let parameters = UIPreviewParameters()