diff --git a/phosta.pl b/phosta.pl
index ea57534ede6af6292d28020e2b96fd4e5cf2327b..ec4b080323e925f7ee92e6ab2f99fcfbf6223660 100755
--- a/phosta.pl
+++ b/phosta.pl
@@ -49,7 +49,7 @@ my ($destination_dir) = @_;
say "Scanning $destination_dir for files...";
- my $cmd = "exiftool -r -m -f -p '\$filepath##\$make##\$model##\$lens##\$lensmodel##\$focallength##\$focallengthin35mmformat##\$aperture##\$exposuretime##\$iso##\$flash##\$datetimeoriginal' -d \"%Y-%m-%d %H:%M:%S\" -ext jpg " . $destination_dir;
+ my $cmd = "exiftool -fast2 -r -m -f -p '\$filepath##\$make##\$model##\$lens##\$lensmodel##\$focallength##\$focallengthin35mmformat##\$aperture##\$exposuretime##\$iso##\$flash##\$datetimeoriginal' -d \"%Y-%m-%d %H:%M:%S\" -ext jpg " . $destination_dir;
my @lines = qx($cmd);
my $dbh = DBI->connect($dsn, $userid, $password, { RaiseError => 1 })