1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
Erik Johnston
380852b58e Bump Changelog and version 2014-09-18 16:20:53 +01:00
Kegan Dougal
3dea0d2806 undefined is empty. Fixed bug where empty bingWords with old accounts which hadn't logged in didn't send notifications. 2014-09-18 16:17:29 +01:00
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;
}