mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-27 17:00:52 +01:00
fix some png images being discarded
This commit is contained in:
parent
8f30b02c97
commit
300e9e7e71
@ -363,9 +363,10 @@ class ImageConvert extends ImageBase {
|
||||
$this->height,
|
||||
escapeshellarg($this->temp)))) || !file_exists($this->temp)) {
|
||||
|
||||
if (strpos($error, "known incorrect sRGB profile") === false) {
|
||||
if (strpos($error, "known incorrect sRGB profile") === false &&
|
||||
strpos($error, "iCCP: Not recognizing known sRGB profile that has been edited") === false) {
|
||||
$this->destroy();
|
||||
error('Failed to resize image!', null, array('convert_error' => $error));
|
||||
error(_('Failed to resize image!')." "._('Details: ').nl2br(htmlspecialchars($error)), null, array('convert_error' => $error));
|
||||
}
|
||||
if (!file_exists($this->temp)) {
|
||||
$this->destroy();
|
||||
|
Loading…
Reference in New Issue
Block a user