Ver a proveniência

Fixes #1609: only use setKeysForSync if it exists

main
Stanislav Lvovsky há 3 anos
committed by Eric Amodio
ascendente
cometimento
a03ff942c4
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/extension.ts

+ 1
- 1
src/extension.ts Ver ficheiro

@ -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) {

Carregando…
Cancelar
Guardar