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 49889f7 commit e012a2aCopy full SHA for e012a2a
packages/core/src/shared/lsp/manifestResolver.ts
@@ -132,10 +132,7 @@ export class ManifestResolver {
132
private async saveManifest(etag: string, content: string): Promise<void> {
133
const storage = this.getStorage()
134
135
- // Only true when incoming manifest is deprecated & existing muteDeprecation is true (set by user)
136
- const muteDeprecation =
137
- (storage[this.lsName] ? storage[this.lsName].muteDeprecation : false) &&
138
- this.parseManifest(content).isManifestDeprecated
+ const muteDeprecation = storage[this.lsName]?.muteDeprecation ?? false
139
140
globals.globalState.tryUpdate(manifestStorageKey, {
141
...storage,
0 commit comments