diff --git a/src/net/thauvin/erik/mobibot/FeedReader.java b/src/net/thauvin/erik/mobibot/FeedReader.java index 62b6de4..2d10912 100644 --- a/src/net/thauvin/erik/mobibot/FeedReader.java +++ b/src/net/thauvin/erik/mobibot/FeedReader.java @@ -149,7 +149,7 @@ public class FeedReader implements Runnable { item = (Item) it.next(); _bot.sendNotice(_sender, item.getTitle()); - _bot.sendNotice(_sender, TAB_INDENT + '<' + item.getLink() + '>'); + _bot.sendNotice(_sender, TAB_INDENT + item.getLink()); i++; } diff --git a/src/net/thauvin/erik/mobibot/GoogleSearch.java b/src/net/thauvin/erik/mobibot/GoogleSearch.java index 950ecf2..3e04085 100644 --- a/src/net/thauvin/erik/mobibot/GoogleSearch.java +++ b/src/net/thauvin/erik/mobibot/GoogleSearch.java @@ -155,8 +155,7 @@ public class GoogleSearch implements Runnable _bot.sendNotice(_sender, Mobibot.unescapeXml(GOOGLE_BEAN.getResultElementProperty(i, "title").replaceAll("<([bB]|/[bB])>", Colors.BOLD))); - _bot.sendNotice(_sender, TAB_INDENT + '<' + GOOGLE_BEAN.getResultElementProperty(i, "url") + - '>'); + _bot.sendNotice(_sender, TAB_INDENT + GOOGLE_BEAN.getResultElementProperty(i, "url")); } } }