Bug 1460748: Follow-up: Fix rebase botch. r=me,test-only DONTBUILD

MozReview-Commit-ID: 8zM7pQM3bIx
This commit is contained in:
Kris Maglione 2018-05-11 17:40:20 -07:00
Родитель 1ff3563202
Коммит 8f2944e150
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -101,7 +101,7 @@ var HunspellEngine = {
} }
try { try {
let xhr = new XMLHttpRequest(); let xhr = new XMLHttpRequest();
xhr.open("GET", uri.spec, false); xhr.open("GET", uri.spec.replace(/\.aff$/, ".dic"), false);
xhr.send(); xhr.send();
return true; return true;
} catch (e) { } catch (e) {