Skip to content

Commit 9f69ed3

Browse files
committed
Auto merge of #17824 - ShoyuVanilla:fix-diags, r=Veykril
fix: Native diagnostics not working This should be a `continue` now _Originally posted by `@Veykril` in #17775 (comment) I've tested the release compile output with IDE in the original PR, but my test workspace had only one `.rs` file 🤦 😢
2 parents 0e282fc + ec0f00f commit 9f69ed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rust-analyzer/src/diagnostics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ impl DiagnosticCollection {
110110
})
111111
{
112112
// don't signal an update if the diagnostics are the same
113-
return;
113+
continue;
114114
}
115115
if *old_gen < generation || generation == 0 {
116116
target.insert(file_id, (generation, diagnostics));

0 commit comments

Comments
 (0)