提交 14526a19 编写于 作者: B Benjamin Pasero

fix npe

上级 1fe6d3da
......@@ -615,7 +615,7 @@ export class WindowsManager implements IWindowsMainService {
const windowConfig = this.configurationService.getConfiguration<IWindowSettings>('window');
restoreWindows = ((windowConfig && windowConfig.restoreWindows) || 'one') as RestoreWindowsSetting;
if (restoreWindows === 'one' /* default */ && windowConfig.reopenFolders) {
if (restoreWindows === 'one' /* default */ && windowConfig && windowConfig.reopenFolders) {
restoreWindows = windowConfig.reopenFolders; // TODO@Ben migration
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册