undefined is empty. Fixed bug where empty bingWords with old accounts which hadn't logged in didn't send notifications.
This commit is contained in:
parent
9fd0c74e90
commit
3dea0d2806
|
@ -189,7 +189,7 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
|
||||||
|
|
||||||
// always bing if there are 0 bing words... apparently.
|
// always bing if there are 0 bing words... apparently.
|
||||||
var bingWords = matrixService.config().bingWords;
|
var bingWords = matrixService.config().bingWords;
|
||||||
if (bingWords && bingWords.length === 0) {
|
if (bingWords === undefined || bingWords.length === 0) {
|
||||||
shouldBing = true;
|
shouldBing = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue