소스 검색

Adds protection during settings migrations

main
Eric Amodio 6 년 전
부모
커밋
d48a930fbc
1개의 변경된 파일27개의 추가작업 그리고 1개의 파일을 삭제
  1. +27
    -1
      src/configuration.ts

+ 27
- 1
src/configuration.ts 파일 보기

@ -30,7 +30,9 @@ export class Configuration {
if (!e.affectsConfiguration(ExtensionKey, null!)) return;
Container.resetConfig();
Container.pages.refresh();
if (Container.pages !== undefined) {
Container.pages.refresh();
}
if (configuration.changed(e, configuration.name('defaultGravatarsStyle').value)) {
clearGravatarCache();
@ -72,14 +74,38 @@ export class Configuration {
if (inspection.globalValue !== undefined) {
await this.update(to, migrationFn ? migrationFn(inspection.globalValue as TFrom) : inspection.globalValue, ConfigurationTarget.Global);
if (from !== to) {
try {
await this.update(from, undefined, ConfigurationTarget.Global);
}
catch (ex) {
debugger;
}
}
}
if (inspection.workspaceValue !== undefined) {
await this.update(to, migrationFn ? migrationFn(inspection.workspaceValue as TFrom) : inspection.workspaceValue, ConfigurationTarget.Workspace);
if (from !== to) {
try {
await this.update(from, undefined, ConfigurationTarget.Workspace);
}
catch (ex) {
debugger;
}
}
}
if (inspection.workspaceFolderValue !== undefined) {
await this.update(to, migrationFn ? migrationFn(inspection.workspaceFolderValue as TFrom) : inspection.workspaceFolderValue, ConfigurationTarget.WorkspaceFolder);
if (from !== to) {
try {
await this.update(from, undefined, ConfigurationTarget.WorkspaceFolder);
}
catch (ex) {
debugger;
}
}
}
}

불러오는 중...
취소
저장