mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-10 22:19:01 +08:00
fix encoding is none (#394)
This commit is contained in:
parent
9253f72dea
commit
b08c19d926
@ -143,7 +143,10 @@ class FilePreviewApi(Resource):
|
|||||||
with open(filepath, "rb") as fp:
|
with open(filepath, "rb") as fp:
|
||||||
data = fp.read()
|
data = fp.read()
|
||||||
encoding = chardet.detect(data)['encoding']
|
encoding = chardet.detect(data)['encoding']
|
||||||
text = data.decode(encoding=encoding).strip() if data else ''
|
if encoding:
|
||||||
|
text = data.decode(encoding=encoding).strip() if data else ''
|
||||||
|
else:
|
||||||
|
text = data.decode(encoding='utf-8').strip() if data else ''
|
||||||
|
|
||||||
text = text[0:PREVIEW_WORDS_LIMIT] if text else ''
|
text = text[0:PREVIEW_WORDS_LIMIT] if text else ''
|
||||||
return {'content': text}
|
return {'content': text}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user