We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff810db commit c14aa51Copy full SHA for c14aa51
apps/chat/serializers/chat_embed_serializers.py
@@ -41,7 +41,7 @@ def get_embed(self, with_valid=True, params=None):
41
show_guide = 'true'
42
float_icon = f"{self.data.get('protocol')}://{self.data.get('host')}{CONFIG.get_chat_path()}/MaxKB.gif"
43
is_license_valid = DatabaseModelManage.get_model('license_is_valid')
44
- X_PACK_LICENSE_IS_VALID = is_license_valid() if is_license_valid() is not None else False
+ X_PACK_LICENSE_IS_VALID = is_license_valid() if is_license_valid is not None else False
45
# 获取接入的query参数
46
query = self.get_query_api_input(application_access_token.application, params)
47
float_location = {"x": {"type": "right", "value": 0}, "y": {"type": "bottom", "value": 30}}
0 commit comments