mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-12 14:10:19 +08:00
fix(usage): record visible stream first byte timing
This commit is contained in:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user