diff --git a/custom_components/hacs/repositories/integration.py b/custom_components/hacs/repositories/integration.py index 8456ce697d9..7d561a69699 100644 --- a/custom_components/hacs/repositories/integration.py +++ b/custom_components/hacs/repositories/integration.py @@ -92,7 +92,7 @@ async def validate_repository(self): self.content.path.remote = f"custom_components/{name}" # Get the content of manifest.json - if manifest := await self.async_get_integration_manifest(): + if manifest := await self.async_get_integration_manifest(self.ref): try: self.integration_manifest = manifest self.data.authors = manifest.get("codeowners", [])