Merge branch 'master' of github.com:matrix-org/synapse into develop

This commit is contained in:
Erik Johnston 2014-09-18 16:22:14 +01:00
commit e0f060d89b
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
Changes in synapse 0.3.2 (2014-09-18)
=====================================
Webclient:
* Fix bug where an empty "bing words" list in old accounts didn't send
notifications when it should have done.
Changes in synapse 0.3.1 (2014-09-18)
=====================================
This is a release to hotfix v0.3.0 to fix two regressions.

View file

@ -1 +1 @@
0.3.1
0.3.2

View file

@ -16,4 +16,4 @@
""" This is a reference implementation of a synapse home server.
"""
__version__ = "0.3.1"
__version__ = "0.3.2"

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;
}