From fae04a6d7064ba80d84f5ed54b3a85b26e3f2bc5 Mon Sep 17 00:00:00 2001 From: ewilly Date: Mon, 20 Oct 2025 15:08:44 +0200 Subject: [PATCH] Do not list links without anchor description in DownloadPageAPI --- autoupdate_app_sources/rest_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoupdate_app_sources/rest_api.py b/autoupdate_app_sources/rest_api.py index 92081bae..c5851c59 100644 --- a/autoupdate_app_sources/rest_api.py +++ b/autoupdate_app_sources/rest_api.py @@ -261,5 +261,5 @@ def get_web_page_links(self) -> dict[str, str]: return { link.string: urljoin(self.web_page, link.get("href")) - for link in soup.find_all("a") + for link in soup.find_all("a") if link.string is not None }