From eed7d9c15cfb710b7f170ae66cc1e840c3a38f46 Mon Sep 17 00:00:00 2001
From: jeena
Date: Sun, 25 Aug 2013 17:00:39 +0200
Subject: [PATCH] fixed #5
---
js/App.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/js/App.js b/js/App.js
index 40b4656..dbd897b 100644
--- a/js/App.js
+++ b/js/App.js
@@ -143,7 +143,7 @@ App.prototype.populateList = function() {
html_str += "" + article.feed_title + "";
html_str += "
";
html_str += "" + article.title + "
";
- html_str += "" + article.excerpt + "
";
+ if(article.excerpt) html_str += "" + article.excerpt + "
";
html_str += "";
}