From 8b44dc17579ecce1044a3acef1dae8d11d87c1ea Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 13 Dec 2012 13:35:25 -0800 Subject: [PATCH] Fix order of arguments. --- packages/livedata/livedata_server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/livedata/livedata_server.js b/packages/livedata/livedata_server.js index d180172260..508648dd2a 100644 --- a/packages/livedata/livedata_server.js +++ b/packages/livedata/livedata_server.js @@ -651,7 +651,7 @@ _.extend(Meteor._LivedataSession.prototype, { _diffCollectionViews: function (beforeCVs) { var self = this; diffObjects(beforeCVs, self.collectionViews, { - both: function (collectionName, rightValue, leftValue) { + both: function (collectionName, leftValue, rightValue) { rightValue.diff(leftValue); }, rightOnly: function (collectionName, rightValue) {