mirror of
https://github.com/standardebooks/web.git
synced 2025-07-13 10:02:02 -04:00
Handle TIFF files with multiple pages
This commit is contained in:
parent
5e23837d17
commit
0c2dce3f63
4 changed files with 32 additions and 14 deletions
|
@ -865,21 +865,21 @@ class Artwork{
|
|||
', [$this->ArtworkId]);
|
||||
|
||||
try{
|
||||
unlink($this->ImageFsPath);
|
||||
@unlink($this->ImageFsPath);
|
||||
}
|
||||
catch(\Safe\Exceptions\FilesystemException){
|
||||
// Pass.
|
||||
}
|
||||
|
||||
try{
|
||||
unlink($this->ThumbFsPath);
|
||||
@unlink($this->ThumbFsPath);
|
||||
}
|
||||
catch(\Safe\Exceptions\FilesystemException){
|
||||
// Pass.
|
||||
}
|
||||
|
||||
try{
|
||||
unlink($this->Thumb2xFsPath);
|
||||
@unlink($this->Thumb2xFsPath);
|
||||
}
|
||||
catch(\Safe\Exceptions\FilesystemException){
|
||||
// Pass.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue