fix(ui): include all 7 path properties in PlatformInfo.get_diagnostics()

config_dir, benchmark_cache_path, executable_path, model_dir were
populated in _init_paths() but missing from the diagnostics dict.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-13 10:50:05 +01:00
co-authored by Claude Sonnet 4.6
parent 41d16d01ae
commit 73b4f37de5
+7 -3
View File
@@ -338,7 +338,11 @@ func get_diagnostics() -> Dictionary:
"locale": locale,
"locale_language": locale_language,
# Paths
"user_data_dir": user_data_dir,
"install_dir": install_dir,
"cache_dir": cache_dir,
"user_data_dir": user_data_dir,
"config_dir": config_dir,
"benchmark_cache_path": benchmark_cache_path,
"install_dir": install_dir,
"executable_path": executable_path,
"cache_dir": cache_dir,
"model_dir": model_dir,
}