From 8538cf5668762e72dfa26a180654aaeb285ba892 Mon Sep 17 00:00:00 2001 From: Danny Campbell Date: Thu, 10 Feb 2011 20:00:08 -0700 Subject: [PATCH] (www) Fixed the way the news feed was being displayed --- www/js/google-feed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/google-feed.js b/www/js/google-feed.js index 0360ffb..ea2dafc 100644 --- a/www/js/google-feed.js +++ b/www/js/google-feed.js @@ -17,7 +17,7 @@ function nl2p(text) { function first_paragraph(ptext) { pindex = ptext.indexOf("\n\n"); - if ( pindex < 200 ) { + if ( pindex < 100 ) { pindex = ptext.indexOf("\n\n", pindex + 1); } -- 1.7.9.5