fix.解决合并时遇到的问题。

This commit is contained in:
lincube
2026-04-26 00:48:59 +08:00
parent 0b603384b4
commit 0e45c836c9
2 changed files with 3 additions and 1 deletions

View File

@@ -131,7 +131,9 @@ internal sealed class DataLocationResolver
{ {
try try
{ {
var configPath = ResolveConfigPath(); // 配置文件必须位于默认系统数据路径下的 Launcher 目录中
// 避免循环依赖:不能调用 ResolveConfigPath() -> ResolveLauncherDataPath() -> ResolveDataRoot() -> LoadConfig()
var configPath = Path.Combine(_defaultSystemDataPath, LauncherFolderName, ConfigFileName);
if (!File.Exists(configPath)) if (!File.Exists(configPath))
{ {
return null; return null;

0
get_git_log.py Normal file
View File