There was no dying due to this bug, it was trapped during deserialization, not serialization.
This reverts commit a0119e9e82.
This commit is contained in:
parent
a0119e9e82
commit
c65fd1946a
2 changed files with 6 additions and 11 deletions
|
|
@ -549,17 +549,13 @@ sub updateExifDataFromFile {
|
|||
}
|
||||
|
||||
# Remove other, pointless, possibly harmful keys
|
||||
delete @{ $info }{qw( Directory NativeDigest CameraID CameraType )};
|
||||
for my $key ( qw( Directory NativeDigest CameraID CameraType ) ) {
|
||||
delete $info->{ $key };
|
||||
}
|
||||
|
||||
my $json = eval { to_json ($info) };
|
||||
if ($@) {
|
||||
$self->session->log->warn('Bad EXIF data in image file for Photo asset '. $self->getId .', unable to convert to JSON');
|
||||
}
|
||||
else {
|
||||
$self->update({
|
||||
exifData => $json,
|
||||
});
|
||||
}
|
||||
$self->update({
|
||||
exifData => to_json( $info ),
|
||||
});
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue