forked from open-webui/open-webui
fix: encoding issue
This commit is contained in:
parent
6307adfba1
commit
3688955c77
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ def get_loader(filename: str, file_content_type: str, file_path: str):
|
|||
elif file_ext == "xml":
|
||||
loader = UnstructuredXMLLoader(file_path)
|
||||
elif file_ext in ["htm", "html"]:
|
||||
loader = BSHTMLLoader(file_path)
|
||||
loader = BSHTMLLoader(file_path, open_encoding="unicode_escape")
|
||||
elif file_ext == "md":
|
||||
loader = UnstructuredMarkdownLoader(file_path)
|
||||
elif file_content_type == "application/epub+zip":
|
||||
|
|
Loading…
Reference in a new issue