Fix Bug 1442992 - Remove second argument from Cu.reportError call.

This commit is contained in:
Andrei Oprea 2018-03-06 11:42:28 +01:00 коммит произвёл GitHub
Родитель 76ed986443
Коммит 138063d466
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -116,7 +116,7 @@ const SectionsManager = {
options = JSON.parse(optionsPrefValue);
} catch (e) {
options = {};
Cu.reportError("Problem parsing options pref", e);
Cu.reportError(`Problem parsing options pref for ${feedPrefName}`);
}
const section = BUILT_IN_SECTIONS[feedPrefName](options);
section.pref.feed = feedPrefName;