Removed angled brackets around URLs as it was breaking Trillian.

This commit is contained in:
Erik C. Thauvin 2004-03-10 17:03:01 +00:00
parent 50bd9f9a10
commit 30fd40caf0
2 changed files with 2 additions and 3 deletions

View file

@ -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++;
}

View file

@ -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"));
}
}
}