Missing an await in addon data (#4487)

This commit is contained in:
Mike Degatano 2023-08-10 16:31:43 -04:00 committed by GitHub
parent 222c3fd485
commit 3018b851c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ class StoreData(CoreSysAttributes):
for repo in await self.sys_run_in_executor(_read_git_repositories):
self.repositories[repo.slug] = repo.config
self._read_addons_folder(repo.path, repo.slug)
await self._read_addons_folder(repo.path, repo.slug)
async def _find_addons(self, path: Path, repository: dict) -> list[Path] | None:
"""Find add-ons in the path."""