فهرست منبع

don't open the media gallery for stickers

cyberta 4 سال پیش
والد
کامیت
e0bcc14652
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      deltachat-ios/Chat/ChatViewController.swift

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

@@ -1317,7 +1317,9 @@ class ChatViewController: UITableViewController {
     func showMediaGalleryFor(indexPath: IndexPath) {
         let messageId = messageIds[indexPath.row]
         let message = DcMsg(id: messageId)
-        showMediaGalleryFor(message: message)
+        if message.type != DC_MSG_STICKER {
+            showMediaGalleryFor(message: message)
+        }
     }
 
     func showMediaGalleryFor(message: DcMsg) {