1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00
This commit is contained in:
Richard van der Hoff
2016-02-24 15:58:35 +00:00
parent 43f392955d
commit 6a19e08381

View File

@@ -713,7 +713,7 @@ SyncApi.prototype._getOrCreateFilter = function(filterName, filter) {
var oldStr = JSON.stringify(existingFilter.getDefinition());
var newStr = JSON.stringify(filter.getDefinition());
if ( oldStr == newStr ) {
if (oldStr == newStr) {
// super, just use that.
debuglog("Using existing filter ID %s: %s", filterId, oldStr);
return q(filterId);