Revert the sorting order of logs viewed from the buddy list to make it consistent with logs viewed from conversation tabs.

This commit is contained in:
Florian Quèze 2009-12-18 15:10:59 +01:00
Родитель 1a42afbf86
Коммит 06e57c33d6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -70,7 +70,7 @@ buddyListContextMenu.prototype = {
for (let log in getIter(account.getLogs()))
logs.push(log);
}
logs.sort(function(log1, log2) log1.time - log2.time);
logs.sort(function(log1, log2) log2.time - log1.time);
window.openDialog("chrome://instantbird/content/viewlog.xul",
"Logs", "chrome,resizable", {logs: logs},
this.target.getAttribute("displayname"));