Browse Source

reverse order

nayooti 5 years ago
parent
commit
e2b6eff075
1 changed files with 1 additions and 1 deletions
  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")
     }