Add files via upload

This commit is contained in:
zsyg
2025-07-20 13:21:19 +08:00
committed by GitHub
parent 4c13fe0008
commit f4f4d86faa
8 changed files with 136 additions and 125 deletions

View File

@@ -205,7 +205,7 @@ namespace AppStore
var jsonData = JsonSerializer.Deserialize<JsonElement>(jsonString);
string customPath = jsonData.GetProperty("DownloadPath").GetString() ?? "";
// 如果自定义路径有效则显示否则显示默认路径
// 如果自定义路径有效则显示,否则显示默认路径
txtBox.Text = !string.IsNullOrWhiteSpace(customPath) ? customPath : defaultPath;
}
else