feat: check if file list exist when checking if repo is ready

This commit is contained in:
tdurieux
2024-04-26 13:10:09 +01:00
parent a0dff4389d
commit 8712746e93

View File

@@ -267,6 +267,9 @@ export default class Repository {
});
return false;
}
if (!(await FileModel.exists({ repoId: this.repoId }).exec())) {
return false;
}
return true;
}