home
·
contact
·
privacy
projects
/
plomlombot-irc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d17c05
)
Cancel page title reading on bad charset.
author
Christian Heller
<c.heller@plomlompom.de>
Mon, 18 Jan 2016 22:05:12 +0000
(23:05 +0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Mon, 18 Jan 2016 22:05:12 +0000
(23:05 +0100)
plomlombot.py
patch
|
blob
|
history
diff --git
a/plomlombot.py
b/plomlombot.py
index 0b605e9946b04f79a8f3e843da56eee2b59b0169..8ac8f01c00cf0cc4e00ad6e4a664a743926ac2f6 100755
(executable)
--- a/
plomlombot.py
+++ b/
plomlombot.py
@@
-122,7
+122,8
@@
def lineparser_loop(io, nickname):
continue
charset = webpage.info().get_content_charset()
if not charset:
- charset = "utf-8"
+ notice("TROUBLE READING PAGE TITLE: no charset in header")
+ continue
content_type = webpage.info().get_content_type()
if content_type not in ('text/html', 'text/xml',
'application/xhtml+xml'):