Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/isida/4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiSabler <dissy@ya.ru>2014-07-11 22:19:18 +0400
committerdiSabler <dissy@ya.ru>2014-07-11 22:19:18 +0400
commit2a0224d78a6440964d4aabced65cef47d76dc1c4 (patch)
tree7e9dcfaa3432de2e295dac9475d76bf60386a2e5
parent20a37b1b675d5548567f8f45538f959b32efa625 (diff)
parentb6f0304d8da47bd7d455183c8429aab05bb26ddf (diff)
Merge branch 'master' of github.com:isida/4
-rw-r--r--plugins/www.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/www.py b/plugins/www.py
index a6ff511..845f994 100644
--- a/plugins/www.py
+++ b/plugins/www.py
@@ -133,7 +133,7 @@ def get_content_title(link):
for t in url_watch_ignore:
if ll.endswith('.%s' % t): raise
link = enidna(link)
- original_page = load_page_size(urllib2.Request(link),8192)
+ original_page = load_page_size(urllib2.Request(link),16384)
page = html_encode(original_page)
if '<title' in page: tag = 'title'
elif '<TITLE' in page: tag = 'TITLE'