mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-26 18:39:25 -05:00
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.
|
||||
var bingWords = matrixService.config().bingWords;
|
||||
if (bingWords && bingWords.length === 0) {
|
||||
if (bingWords === undefined || bingWords.length === 0) {
|
||||
shouldBing = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user