File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ module.exports.makeLegacyFindCursor = function (baseClass) {
36
36
: undefined ;
37
37
options = typeof options !== 'function' ? options : undefined ;
38
38
verbosity = typeof verbosity !== 'function' ? verbosity : undefined ;
39
- return maybeCallback ( super . explain ( ... arguments ) , callback ) ;
39
+ return maybeCallback ( super . explain ( verbosity , options ) , callback ) ;
40
40
}
41
41
42
42
close ( options , callback ) {
@@ -194,7 +194,7 @@ module.exports.makeLegacyAggregationCursor = function (baseClass) {
194
194
: undefined ;
195
195
options = typeof options !== 'function' ? options : undefined ;
196
196
verbosity = typeof verbosity !== 'function' ? verbosity : undefined ;
197
- return maybeCallback ( super . explain ( ... arguments ) , callback ) ;
197
+ return maybeCallback ( super . explain ( verbosity , options ) , callback ) ;
198
198
}
199
199
200
200
close ( options , callback ) {
You can’t perform that action at this time.
0 commit comments