Bug 1131416 - Desktop syncing module for reading list service (one more fix to prepatory changes). r=jaws

This commit is contained in:
Drew Willcoxon 2015-03-20 15:53:14 -07:00
Родитель 48b68185e5
Коммит d4fec9333e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -441,7 +441,7 @@ let RLSidebar = {
if (!msg.url) {
this.activeItem = null;
} else {
ReadingList.getItemForURL(msg.url).then(item => {
ReadingList.itemForURL(msg.url).then(item => {
this.activeItem = this.itemNodesById.get(item.id);
});
}