Skip to content

Commit 4d45079

Browse files
dbauschJohnstonCode
authored andcommitted
Fix trying to open every file as a repo (close #621) (#625)
1 parent 629df3c commit 4d45079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export class Model implements IDisposable {
242242

243243
const checkParent = level === 0;
244244

245-
if (isSvnFolder(path, checkParent)) {
245+
if (await isSvnFolder(path, checkParent)) {
246246
// Config based on folder path
247247
const resourceConfig = workspace.getConfiguration("svn", Uri.file(path));
248248

0 commit comments

Comments
 (0)