Skip to content

Commit

Permalink
Merge pull request #62 from exalented/master
Browse files Browse the repository at this point in the history
Fix LANGUAGE_CODE environment variable
  • Loading branch information
kingmo888 authored Apr 4, 2024
2 parents acf11d5 + efa3dec commit 53068fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rustdesk_server_api/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
MYSQL_PORT = os.environ.get("MYSQL_PORT", '3306')
#==========数据库配置 结束=====================

LANGUAGE_CODE = os.environ.get("MYSQL_PORT", 'zh-hans')
LANGUAGE_CODE = os.environ.get("LANGUAGE_CODE", 'zh-hans')

# Application definition

Expand Down Expand Up @@ -170,4 +170,4 @@

LOCALE_PATHS = (
os.path.join(BASE_DIR, 'locale'),
)
)

0 comments on commit 53068fd

Please sign in to comment.