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:
Родитель
1a42afbf86
Коммит
06e57c33d6
|
@ -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"));
|
||||
|
|
Загрузка…
Ссылка в новой задаче