This commit is contained in:
Dan Mills 2007-10-16 15:29:53 -07:00
Родитель 760bdcd242 15299da484
Коммит 2c507f7654
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -688,8 +688,11 @@ BookmarksSyncService.prototype = {
if (command.data.type == "microsummary") {
this._log.info(" \-> is a microsummary");
let genURI = makeURI(command.data.generatorURI);
let micsum = this._ms.createMicrosummary(URI, genURI);
this._ms.setMicrosummary(newId, micsum);
try {
let micsum = this._ms.createMicrosummary(URI, genURI);
this._ms.setMicrosummary(newId, micsum);
}
catch(ex) { /* ignore "missing local generator" exceptions */ }
}
break;
case "folder":