File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ sub check_column_for_fun {
429429 $base_query .= " $column_name FROM $table_name " ;
430430
431431 # Use the base query to loop over all the things we're looking for
432- foreach $file_type (sort ( keys (%fun_stuff ) )) {
432+ foreach $file_type (keys (%fun_stuff )) {
433433 my $tmp_query = $base_query . " WHERE hex($column_name ) LIKE '" .$fun_stuff {$file_type }{' regex' }." '" ;
434434
435435 # Build and execute query
@@ -718,7 +718,7 @@ sub extract_sqlite_from_android_backup {
718718
719719 # Clean up from any previous runs that error'd out
720720 if (-e $tmp_export_dir ) {
721- print_log_line_if($log_file_handle , " Deleting existing export directory left over from previous run\n " , $very_verbose ;
721+ print_log_line_if($log_file_handle , " Deleting existing export directory left over from previous run\n " , $very_verbose ) ;
722722 File::Path-> remove_tree($tmp_export_dir );
723723 }
724724
You can’t perform that action at this time.
0 commit comments