diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-18 16:22:14 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-18 16:22:14 +0100 |
commit | e0f060d89b9ed82284e3781640fb77257d116753 (patch) | |
tree | 93010a33c66d1213c1a6285919cb9eca3f81a8e0 /webclient | |
parent | fix wordwrap (diff) | |
parent | Bump Changelog and version (diff) | |
download | synapse-e0f060d89b9ed82284e3781640fb77257d116753.tar.xz |
Merge branch 'master' of github.com:matrix-org/synapse into develop
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/components/matrix/event-handler-service.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/components/matrix/event-handler-service.js b/webclient/components/matrix/event-handler-service.js index 321054f904..c7be65720a 100644 --- a/webclient/components/matrix/event-handler-service.js +++ b/webclient/components/matrix/event-handler-service.js @@ -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; } |