We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1656d7e commit 26f6101Copy full SHA for 26f6101
crates/emmylua_ls/src/context/status_bar.rs
@@ -78,7 +78,7 @@ impl StatusBar {
78
if let Some(message) = message {
79
self.vscode_report_progress(&message, percentage.unwrap_or(0) as f64 / 100.0);
80
} else {
81
- self.vscode_report_progress(task.get_task_name(), percentage.unwrap() as f64);
+ self.vscode_report_progress(task.get_task_name(), percentage.unwrap_or(0) as f64);
82
}
83
84
_ => self.client.send_notification(
0 commit comments