mirror of
https://github.com/element-hq/synapse.git
synced 2026-05-29 17:54:47 +00: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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user