Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
calebisstupid committed Apr 17, 2020
1 parent 56c34b5 commit c352dc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions BSImagePicker.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BSImagePicker"
s.version = "2.9.0"
s.version = "2.9.1"
s.summary = "BSImagePicker is a multiple image picker for iOS. UIImagePickerController replacement"
s.description = <<-DESC
A mix between the native iOS gallery and facebooks image picker. Allows you to preview and select multiple images.
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.homepage = "https://github.com/mikaoj/BSImagePicker"
s.license = 'MIT'
s.author = { "Joakim Gyllström" => "[email protected]" }
s.source = { :git => "https://github.com/mikaoj/BSImagePicker.git", :tag => s.version.to_s }
s.source = { :git => 'https://github.com/twinsunllc/BSImagePicker' }

s.platform = :ios, '9.0'
s.requires_arc = true
Expand Down
3 changes: 1 addition & 2 deletions Sources/Model/AlbumTableViewDataSource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,8 @@ final class AlbumTableViewDataSource : NSObject, UITableViewDataSource {
NSSortDescriptor(key: "modificationDate", ascending: false)
]

print("LALALALALA TEST LOG")
if(self.settings.enableVideos) {
print("getting videos too")
print("getting videos too lalala")
let videoPredicate = NSPredicate(format: "mediaType = %d AND duration <= %f", PHAssetMediaType.video.rawValue, settings.maxDuration)
let imagePredicate = NSPredicate(format: "mediaType = %d", PHAssetMediaType.image.rawValue)
let predicate = NSCompoundPredicate(orPredicateWithSubpredicates: [videoPredicate, imagePredicate])
Expand Down

0 comments on commit c352dc3

Please sign in to comment.