Bug 1382001 - Part 3: Fix eslint. r=me

MozReview-Commit-ID: 2RdpKeV7OL2
This commit is contained in:
Eric Rahm 2017-08-10 17:51:23 -07:00
Родитель 93e1efc17d
Коммит cc3f3645bc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -373,7 +373,7 @@ function readCurrentList(filename) {
while (fis.readLine(line)) {
let match;
entryRegexes.find((r) => match = r.exec(line.value));
entryRegexes.find((r) => { match = r.exec(line.value); return match; } );
if (match) {
currentHosts[match[1]] = (match[2] == "1" || match[2] == "true");
}