mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Missed filter to pass _getCollection through.
This commit is contained in:
@@ -442,7 +442,8 @@ _.extend(Connection.prototype, {
|
||||
// implemented by 'store' into a no-op.
|
||||
var store = {};
|
||||
_.each(['update', 'beginUpdate', 'endUpdate', 'saveOriginals',
|
||||
'retrieveOriginals', 'getDoc'], function (method) {
|
||||
'retrieveOriginals', 'getDoc',
|
||||
'_getCollection'], function (method) {
|
||||
store[method] = function () {
|
||||
return (wrappedStore[method]
|
||||
? wrappedStore[method].apply(wrappedStore, arguments)
|
||||
|
||||
Reference in New Issue
Block a user