X-Git-Url: https://plomlompom.com/repos/?p=plomlombot-irc.git;a=blobdiff_plain;f=plomlombot.py;h=7d915dc2f80c79157119089aa2e0dd6e9566d16a;hp=179bc2a2221d90da84580f57898aa3b704fca0f5;hb=d074cd51f4378884e977b26490af1c6d1dcc81c8;hpb=01c61f5d9bfe03ad40b4deda9f23ff97ef7ac2d8 diff --git a/plomlombot.py b/plomlombot.py index 179bc2a..7d915dc 100644 --- a/plomlombot.py +++ b/plomlombot.py @@ -103,6 +103,10 @@ while 1: for i in range(len(matches)): url = matches[i] webpage = urllib.request.urlopen(url) + content_type = webpage.info().get_content_type() + if not content_type in ('text/html', 'text/xml', + 'application/xhtml+xml'): + continue charset = webpage.info().get_content_charset() content = webpage.read().decode(charset) title = str(content).split('')[1].split('')[0]