Browse Source

fix: notion extractor raise 'NoneType' object has no attribute 'curre… (#2608)

tags/0.5.7
takatost 1 year ago
parent
commit
a4d86496e1
No account linked to committer's email address
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      api/core/rag/extractor/notion_extractor.py

+ 1
- 2
api/core/rag/extractor/notion_extractor.py View File

@@ -4,7 +4,6 @@ from typing import Any, Optional

import requests
from flask import current_app
from flask_login import current_user

from core.rag.extractor.extractor_base import BaseExtractor
from core.rag.models.document import Document
@@ -43,7 +42,7 @@ class NotionExtractor(BaseExtractor):
if notion_access_token:
self._notion_access_token = notion_access_token
else:
self._notion_access_token = self._get_access_token(current_user.current_tenant_id,
self._notion_access_token = self._get_access_token(tenant_id,
self._notion_workspace_id)
if not self._notion_access_token:
integration_token = current_app.config.get('NOTION_INTEGRATION_TOKEN')

Loading…
Cancel
Save