We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec8256d commit 614969bCopy full SHA for 614969b
1 file changed
editors/code/src/client.ts
@@ -111,6 +111,13 @@ export async function createClient(
111
if (!diagnostic.message) {
112
diagnostic.message = " ";
113
}
114
+ if (diagnostic.relatedInformation) {
115
+ for (const relatedInformation of diagnostic.relatedInformation) {
116
+ if (!relatedInformation.message) {
117
+ relatedInformation.message = " ";
118
+ }
119
120
121
122
next(uri, diagnostics);
123
},
0 commit comments