fix(usage): record visible stream first byte timing

This commit is contained in:
fawney19
2026-05-27 02:48:01 +08:00
parent f03550415b
commit cf8372c8cb
10 changed files with 656 additions and 94 deletions
@@ -4044,7 +4044,10 @@ fn language_server_env(proxy_url: Option<&str>) -> BTreeMap<String, String> {
.or_else(|| std::env::var_os("HOME"))
.filter(|value| !value.is_empty())
{
env.insert("USERPROFILE".to_string(), PathBuf::from(home).display().to_string());
env.insert(
"USERPROFILE".to_string(),
PathBuf::from(home).display().to_string(),
);
}
}
if let Some(proxy_url) = proxy_url.filter(|value| !value.trim().is_empty()) {