From 059eb5361d762b68766a9123ec3614d5ddb702de Mon Sep 17 00:00:00 2001 From: bbhtt Date: Fri, 26 Jul 2024 14:40:44 +0530 Subject: [PATCH] appid: Switch to checking via API again Summary parsing requires users to set up both Flathub stable and beta remotes, which is a hard ask. --- flatpak_builder_lint/checks/appid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flatpak_builder_lint/checks/appid.py b/flatpak_builder_lint/checks/appid.py index bfe28920..d78cc1d8 100644 --- a/flatpak_builder_lint/checks/appid.py +++ b/flatpak_builder_lint/checks/appid.py @@ -58,7 +58,7 @@ def _validate(self, appid: Optional[str], is_extension: bool) -> None: return if split[-1] == "Devel": return - if domainutils.is_appid_on_flathub(appid): + if domainutils.is_app_on_flathub(appid): return if appid.startswith(domainutils.code_hosts): if domainutils.get_proj_url(appid) is None: