浏览代码

Fix thumbnail_img NoneType error (#2941)

### What problem does this PR solve?

fix thumbnail_img NoneType error

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.13.0
wwwlll 1年前
父节点
当前提交
6a4858a7ee
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5
    2
      api/utils/file_utils.py

+ 5
- 2
api/utils/file_utils.py 查看文件

@@ -199,8 +199,11 @@ def thumbnail_img(filename, blob):

def thumbnail(filename, blob):
img = thumbnail_img(filename, blob)
return IMG_BASE64_PREFIX + \
base64.b64encode(img).decode("utf-8")
if img is not None:
return IMG_BASE64_PREFIX + \
base64.b64encode(img).decode("utf-8")
else:
return ''

def traversal_files(base):
for root, ds, fs in os.walk(base):

正在加载...
取消
保存