]> git.phdru.name Git - bookmarks_db.git/commitdiff
Fix(parse_html/bkmk_ph_beautifulsoup4): Find "shortcut icon"
authorOleg Broytman <phd@phdru.name>
Sun, 3 Mar 2024 14:47:58 +0000 (17:47 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 3 Mar 2024 20:44:06 +0000 (23:44 +0300)
Bs4 splits attribute values. To fix it the value must be re-combined back.

parse_html/bkmk_ph_beautifulsoup4.py

index 7687c755e94aa6c80a6d019239efd170554cc4b6..060f0786d473c17de36ad073c05632c06f30c35d 100644 (file)
@@ -139,6 +139,7 @@ def _find_refresh(Tag):
 
 
 def _find_icon(Tag):
-    return (Tag.name == "link") and \
-       (Tag.get_attribute_list("rel", '')[0].lower()
-        in ('icon', 'shortcut icon'))
+    if Tag.name != "link":
+        return False
+    rel = ' '.join(Tag.get_attribute_list("rel", ''))
+    return rel in ('icon', 'shortcut icon')