This commit is contained in:
Sara Arjona 2021-06-28 11:33:18 +02:00
commit 6144623683

View File

@ -204,7 +204,7 @@ abstract class scanner {
// Check for empty file, or file not uploaded.
if (!empty($file) && filesize($file) !== false) {
$content->filesize = display_size(filesize($file));
$content->contenthash = \file_storage::hash_from_string(file_get_contents($file));
$content->contenthash = \file_storage::hash_from_path($file);
$content->contenttype = mime_content_type($file);
} else {
$content->filesize = $unknown;