mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +01:00
properly fetch gif files
This commit is contained in:
parent
bd0f540460
commit
47046d3d11
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ class MediaFetcher(val context: Context) {
|
|||
val isVideo = if (isImage) false else filename.isVideoFast()
|
||||
val isGif = if (isImage || isVideo) false else filename.isGif()
|
||||
|
||||
if (!isImage && !isVideo)
|
||||
if (!isImage && !isVideo && !isGif)
|
||||
continue
|
||||
|
||||
if (isVideo && (isPickImage || filterMedia and VIDEOS == 0))
|
||||
|
|
Loading…
Reference in a new issue