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:
Kegan Dougal 2014-09-18 16:17:29 +01:00
parent 9fd0c74e90
commit 3dea0d2806

View File

@ -189,7 +189,7 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
// always bing if there are 0 bing words... apparently.
var bingWords = matrixService.config().bingWords;
if (bingWords && bingWords.length === 0) {
if (bingWords === undefined || bingWords.length === 0) {
shouldBing = true;
}