mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-13 11:49:05 +08:00
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)
This commit is contained in:
parent
1a623df849
commit
6a4858a7ee
@ -199,8 +199,11 @@ def thumbnail_img(filename, blob):
|
|||||||
|
|
||||||
def thumbnail(filename, blob):
|
def thumbnail(filename, blob):
|
||||||
img = thumbnail_img(filename, blob)
|
img = thumbnail_img(filename, blob)
|
||||||
return IMG_BASE64_PREFIX + \
|
if img is not None:
|
||||||
base64.b64encode(img).decode("utf-8")
|
return IMG_BASE64_PREFIX + \
|
||||||
|
base64.b64encode(img).decode("utf-8")
|
||||||
|
else:
|
||||||
|
return ''
|
||||||
|
|
||||||
def traversal_files(base):
|
def traversal_files(base):
|
||||||
for root, ds, fs in os.walk(base):
|
for root, ds, fs in os.walk(base):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user