Переглянути джерело

Fix: link to KB from filemanager. (#6530)

### What problem does this PR solve?



### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.18.0
Kevin Hu 7 місяці тому
джерело
коміт
c8c91fd827
Аккаунт користувача з таким Email не знайдено
1 змінених файлів з 1 додано та 1 видалено
  1. 1
    1
      api/apps/file2document_app.py

+ 1
- 1
api/apps/file2document_app.py Переглянути файл

@@ -39,7 +39,7 @@ def convert():

try:
files = FileService.get_by_ids(file_ids)
files_set = set([file.id for file in files])
files_set = dict({file.id: file for file in files})
for file_id in file_ids:
file = files_set[file_id]
if not file:

Завантаження…
Відмінити
Зберегти