Explorar el Código

Fixes #1609: only use setKeysForSync if it exists

main
Stanislav Lvovsky hace 3 años
cometido por Eric Amodio
padre
commit
a03ff942c4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/extension.ts

+ 1
- 1
src/extension.ts Ver fichero

@ -197,7 +197,7 @@ export async function setEnabled(enabled: boolean): Promise {
}
export function setKeysForSync(...keys: (SyncedState | string)[]) {
return _context?.globalState.setKeysForSync([...keys, SyncedState.Version, SyncedState.WelcomeViewVisible]);
return _context?.globalState?.setKeysForSync([...keys, SyncedState.Version, SyncedState.WelcomeViewVisible]);
}
export function notifyOnUnsupportedGitVersion(version: string) {

Cargando…
Cancelar
Guardar