From f484f4e433f714e4b6b15ecdd882ba1d955c8e94 Mon Sep 17 00:00:00 2001 From: Naomi Seyfer Date: Mon, 11 Mar 2013 18:17:07 -0700 Subject: [PATCH] stop getting the transform from the wrong place on the server in getTransform --- packages/mongo-livedata/mongo_driver.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mongo-livedata/mongo_driver.js b/packages/mongo-livedata/mongo_driver.js index ffe32359e8..453f3e3d9a 100644 --- a/packages/mongo-livedata/mongo_driver.js +++ b/packages/mongo-livedata/mongo_driver.js @@ -380,7 +380,7 @@ _.each(['forEach', 'map', 'rewind', 'fetch', 'count'], function (method) { Cursor.prototype.getTransform = function () { var self = this; - return self._cursorDescription._transform; + return self._synchronousCursor._transform; }; // When you call Meteor.publish() with a function that returns a Cursor, we need