Ignore null entries
Not sure how or why they're there, but sure.
This commit is contained in:
parent
c2a13d4584
commit
5da10e58eb
1 changed files with 2 additions and 0 deletions
|
@ -27,6 +27,8 @@ def get_vscode_project_dirs():
|
|||
vscode_config = json.loads(VSCODE_CONFIG_FILE.read_text())
|
||||
|
||||
for recent_path in itertools.chain(*vscode_config['openedPathsList'].values()):
|
||||
if not recent_path:
|
||||
continue
|
||||
recent_path_path = Path(recent_path.replace('file://', ''))
|
||||
if recent_path_path.exists():
|
||||
yield recent_path_path
|
||||
|
|
Loading…
Reference in a new issue