fix(scripts): remove nonsense (but harmless) comparison of bool to -1 (#394) r=@vladikoff

This commit is contained in:
Phil Booth 2018-08-28 18:31:55 +01:00 коммит произвёл Vlad Filippov
Родитель 64634d476f
Коммит 13ca41572f
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -160,10 +160,10 @@ function canStaticallyDetermineMx(host, mxDomain) {
if (host === 'gmail.com' && mxDomain === 'google.com') {
return true
}
if (host === 'yahoo.com' !== -1 && mxDomain === 'yahoodns.net') {
if (host === 'yahoo.com' && mxDomain === 'yahoodns.net') {
return true
}
if (host === 'fastmail.fm' !== -1 && mxDomain === 'messagingengine.com') {
if (host === 'fastmail.fm' && mxDomain === 'messagingengine.com') {
return true
}
return false