mirror of
https://github.com/langgenius/dify.git
synced 2026-05-01 16:08:04 +08:00
fix: change subject title
This commit is contained in:
@ -198,8 +198,8 @@ class FeatureService:
|
||||
|
||||
@classmethod
|
||||
def get_enterprise_application_title(cls):
|
||||
branding = cls.get_system_features().get("branding", None)
|
||||
branding = cls.get_system_features().branding
|
||||
application_title = "Dify"
|
||||
if branding and branding.get("enabled", False):
|
||||
application_title = branding.get("application_title", "Dify")
|
||||
if branding.enabled:
|
||||
application_title = branding.application_title
|
||||
return application_title
|
||||
|
||||
Reference in New Issue
Block a user