Bug 955567 - Account displayed connected and with an error at the same time, r=aleth.

This commit is contained in:
Florian Quèze 2013-08-27 23:22:11 +02:00
Родитель e8b6f2c99d
Коммит 96673aacee
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -213,9 +213,9 @@
this._connectedLabel = null;
if (this._account.connected)
this.refreshConnectedLabel();
if (this._account.connectionErrorReason == Ci.prplIAccount.NO_ERROR)
else if (this._account.connecting)
this.updateConnectionState();
else
else if (this._account.connectionErrorReason != Ci.prplIAccount.NO_ERROR)
this.updateConnectionError();
]]>
</body>