浏览代码

reverse order

nayooti 5 年之前
父节点
当前提交
e2b6eff075
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      deltachat-ios/Controller/DocumentGalleryController.swift

+ 1 - 1
deltachat-ios/Controller/DocumentGalleryController.swift

@@ -15,7 +15,7 @@ class DocumentGalleryController: UIViewController {
     }()
 
     init(fileMessageIds: [Int]) {
-        self.fileMessageIds = fileMessageIds
+        self.fileMessageIds = fileMessageIds.reversed()
         super.init(nibName: nil, bundle: nil)
         self.title = String.localized("documents")
     }