Fix a confusing comment in irc.js, rs=florian.

This commit is contained in:
Patrick Cloke 2012-07-31 14:26:09 +02:00
Родитель 3ab1902e55
Коммит bde11f7588
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -528,7 +528,9 @@ ircAccountBuddy.prototype = {
get normalizedName() this._account.normalize(this.userName),
// Can not send messages to buddies who appear offline.
// Allow sending of messages to buddies even if they are not online since IRC
// does not always provide status information in a timely fashion. (Note that
// this is OK since the server will throw an error if the user is not online.)
get canSendMessage() this.account.connected,
// Called when the user wants to chat with the buddy.