Procházet zdrojové kódy

Fixes #1609: only use setKeysForSync if it exists

main
Stanislav Lvovsky před 3 roky
odevzdal Eric Amodio
rodič
revize
a03ff942c4
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/extension.ts

+ 1
- 1
src/extension.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit