Bug 423877 - createLivemark fails if created feed cannot be loaded (for toddsf@gmail.com, r=dietrich, a=beltzner)

This commit is contained in:
dietrich@mozilla.com 2008-03-31 08:59:12 -07:00
Родитель 45a979719d
Коммит 10cc6dd0d5
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -199,7 +199,8 @@ LivemarkService.prototype = {
_pushLivemark: function LS__pushLivemark(aFolderId, aFeedURI) {
// returns new length of _livemarks
return this._livemarks.push({folderId: aFolderId, feedURI: aFeedURI});
return this._livemarks.push({folderId: aFolderId, feedURI: aFeedURI,
loadingId: -1});
},
_getLivemarkIndex: function LS__getLivemarkIndex(aFolderId) {