From 019b9e484319b358843f5f8fe972966a404a4f30 Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Wed, 27 Nov 2024 16:25:09 -0800 Subject: [PATCH] Make sure that the ref is used when collecting integration manifest --- custom_components/hacs/repositories/integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", [])