Browse Source

Use new syntax for filehash.

pull/912/head
Rosie Le Faive 2 years ago
parent
commit
7df45a083a
  1. 3
      islandora.module

3
islandora.module

@ -181,7 +181,8 @@ function islandora_file_insert(FileInterface $file) {
*/ */
function islandora_file_update(FileInterface $file) { function islandora_file_update(FileInterface $file) {
// Exit early if unchanged. // Exit early if unchanged.
if ($file->filehash != NULL && $file->original->filehash != NULL && $file->filehash['sha1'] == $file->original->filehash['sha1']) { if ($file->hasField('sha1') && $file->original->hasField('sha1')
&& $file->sha1->getString() == $file->original->sha1->getString()) {
return; return;
} }

Loading…
Cancel
Save