Removed angled brackets around URLs as it was breaking Trillian.
This commit is contained in:
parent
50bd9f9a10
commit
30fd40caf0
2 changed files with 2 additions and 3 deletions
|
@ -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++;
|
||||
}
|
||||
|
|
|
@ -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"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue