浏览代码

修复文件上传表单删除文件时报destroyThumbnail不存在问题

jqh 3 年之前
父节点
当前提交
704c3bf0af
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/Form/Field/UploadField.php

+ 3 - 1
src/Form/Field/UploadField.php

@@ -394,7 +394,9 @@ trait UploadField
             return;
         }
 
-        $this->destroyThumbnail($paths);
+        if (method_exists($this, 'destroyThumbnail')) {
+            $this->destroyThumbnail($paths);
+        }
 
         $storage = $this->getStorage();