diff options
-rwxr-xr-x | lib/App/Dthumb.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/App/Dthumb.pm b/lib/App/Dthumb.pm index 5b493ee..a8014de 100755 --- a/lib/App/Dthumb.pm +++ b/lib/App/Dthumb.pm @@ -62,7 +62,7 @@ sub read_directories { opendir($dh, $imgdir); for my $file (readdir($dh)) { - if (-f $file and $file =~ qr{ \. (png | jp e? g | gif | tif) $ }iox) { + if (-f $file and $file =~ qr{ \. (png | jp e? g) $ }iox) { push(@files, $file); } } |