From 55ee943b3ef63d03826318d36fd964d182c3c322 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 13 Oct 2007 09:02:12 +0000 Subject: [PATCH] Store only images as icons; do not store text/html errorrs. git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@92 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23 --- Robots/bkmk_rsimple.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Robots/bkmk_rsimple.py b/Robots/bkmk_rsimple.py index 1c4795c..63c0b4c 100644 --- a/Robots/bkmk_rsimple.py +++ b/Robots/bkmk_rsimple.py @@ -181,7 +181,10 @@ class robot_simple(Robot): icon_file.close() os.remove(fname) content_type = headers["Content-Type"] - bookmark.icon = "data:%s;base64,%s" % (content_type, b64encode(icon)) + if content_type.startswith("image/"): + bookmark.icon = "data:%s;base64,%s" % (content_type, b64encode(icon)) + else: + bookmark.icon = None except KeyError: pass -- 2.39.2