This commit is contained in:
Dan Mills 2009-03-26 10:58:54 -07:00
Родитель d0e24b6318
Коммит 1d6b73a5d7
1 изменённых файлов: 7 добавлений и 6 удалений

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

@ -240,14 +240,15 @@ PasswordTracker.prototype = {
switch (aData) {
case 'modifyLogin':
aSubject = aSubject.queryElementAt(1, Ci.nsILoginMetaInfo);
aSubject = aSubject.QueryInterface(Ci.nsIArray).
queryElementAt(1, Ci.nsILoginMetaInfo);
case 'addLogin':
case 'removeLogin': {
let metaInfo = aSubject.QueryInterface(Ci.nsILoginMetaInfo);
case 'removeLogin':
aSubject.QueryInterface(Ci.nsILoginMetaInfo);
this._score += 15;
this._log.debug(aData + ": " + metaInfo.guid);
this.addChangedID(metaInfo.guid);
} break;
this._log.debug(aData + ": " + aSubject.guid);
this.addChangedID(aSubject.guid);
break;
case 'removeAllLogins':
this._log.debug(aData);
this._score += 50;