diff --git a/astrbot/dashboard/routes/stat.py b/astrbot/dashboard/routes/stat.py index 666eb4c83..532238ac7 100644 --- a/astrbot/dashboard/routes/stat.py +++ b/astrbot/dashboard/routes/stat.py @@ -295,14 +295,15 @@ async def get_first_notice(self): if locale: candidates.append(base_path / f"FIRST_NOTICE.{locale}.md") if locale.lower().startswith("zh"): + candidates.append(base_path / "FIRST_NOTICE.md") candidates.append(base_path / "FIRST_NOTICE.zh-CN.md") elif locale.lower().startswith("en"): candidates.append(base_path / "FIRST_NOTICE.en-US.md") candidates.extend( [ - base_path / "FIRST_NOTICE.en-US.md", base_path / "FIRST_NOTICE.md", + base_path / "FIRST_NOTICE.en-US.md", ], )