Fix typo in default bookmarks error handler

This commit is contained in:
Gavin Sharp 2009-10-20 20:16:34 -04:00
parent 62823c12b2
commit a655e55c97

View File

@ -93,7 +93,7 @@ BrowserStartup.prototype = {
jsonStr = converter.convertFromByteArray(aResult, aResult.length);
PlacesUtils.restoreBookmarksFromJSONString(jsonStr, true);
} catch (ex) {
} catch (err) {
Cu.reportError("Failed to parse default bookmarks from bookmarks.json: " + err);
}
}