зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1029486 - Check for dead wrappers after running language detection r=felipe
This commit is contained in:
Родитель
0ed21309c9
Коммит
a6cce4d071
|
@ -85,8 +85,15 @@ TranslationContentHandler.prototype = {
|
|||
return;
|
||||
|
||||
LanguageDetector.detectLanguage(string).then(result => {
|
||||
if (!result.confident)
|
||||
// Bail if we're not confident.
|
||||
if (!result.confident) {
|
||||
return;
|
||||
}
|
||||
|
||||
// The window might be gone by now.
|
||||
if (Cu.isDeadWrapper(content)) {
|
||||
return;
|
||||
}
|
||||
|
||||
content.detectedLanguage = result.language;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче