diff --git a/src/net/java/sip/communicator/impl/protocol/rss/RssFeedReader.java b/src/net/java/sip/communicator/impl/protocol/rss/RssFeedReader.java
index a684c1f62..a0ac1741b 100644
--- a/src/net/java/sip/communicator/impl/protocol/rss/RssFeedReader.java
+++ b/src/net/java/sip/communicator/impl/protocol/rss/RssFeedReader.java
@@ -15,7 +15,7 @@
import net.java.sip.communicator.service.protocol.*;
/**
- * The class used for using the Informa Library into the RSS protocol
+ * The class used for using the ROME Library into the RSS protocol.
*
* @author Jean-Albert Vescovo
* @author Mihai Balan
@@ -163,12 +163,15 @@ public synchronized String feedToString(Date latestRetrievedItemDate)
.compareTo(latestRetrievedItemDate) > 0)
{
// Get the abstract of the news.
- newsAbstract = items[i].getDescription().getValue();
+ newsAbstract = getNewsAbstract(items[i]);
// Forge the news to be displayed.
- printedFeed.insert(0, "At "
- + items[i].getPublishedDate()
- + "
"+ items[i].getTitle() + ""
- + " Link
");
+ printedFeed.insert(0,
+ ""
+ + ""+ items[i].getTitle() + ""
+ + ""
+ + "
"
+ + newsAbstract
+ + "
* @param o1 the first item to be compared. * @param o2 the second item to be compared. * @return a negative integer, zero, or a positive integer as the * first item has a date that is before is equal to or is - * after the swcond. + * after the second. * @throws ClassCastException if one of the objects is not a * SyndEntry instance. */