Skip to content

Commit 9ce6181

Browse files
committed
Fixed collections not passing through get opts.
1 parent ee4e637 commit 9ce6181

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/collection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extend(BaseCollection.prototype, {
3838
}
3939
if (!callback) callback = noop;
4040
var self = this;
41-
self._api.get('collection/' + self.name + '/' + path, function (err, body) {
41+
self._api.get('collection/' + self.name + '/' + path, opts, function (err, body) {
4242
if (err) callback(err);
4343
else {
4444
if (update) {

0 commit comments

Comments
 (0)