diff --git a/CHANGES.rst b/CHANGES.rst index edf32db752c31b660ddbb9223a2d7dc3ce355020..9e884e51bf4977e7b2c6c8c52aab877323ed32e6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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. diff --git a/VERSION b/VERSION index 9e11b32fcaa96816319e5d0dcff9fb2873f04061..d15723fbe8de36b1c3ae302c77d8095459ea88e6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.1 +0.3.2 diff --git a/synapse/__init__.py b/synapse/__init__.py index 1b49cbb38e3ec12db00e0e7a81fa9b19c8fcde8e..0dbad9a0defe37ea34fcabdc671876b7f6ad032b 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -16,4 +16,4 @@ """ This is a reference implementation of a synapse home server. """ -__version__ = "0.3.1" +__version__ = "0.3.2" diff --git a/webclient/components/matrix/event-handler-service.js b/webclient/components/matrix/event-handler-service.js index 321054f90429efa70dab72479aae17e6a36645cc..c7be65720abc264a0c3464e1d6322774b1de1a78 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; }