Missed filter to pass _getCollection through.

This commit is contained in:
Mitar
2016-02-04 14:37:34 -08:00
parent aee6d2ef63
commit 840c5fbf44

View File

@@ -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)