Fix mongoose query
This caused an "Invalid sort() argument." error when accessing groups.
This commit is contained in:
@@ -33,7 +33,7 @@ var populateQuery = function(type, q){
|
||||
q.populate({
|
||||
path: 'challenges',
|
||||
select: challengeFields,
|
||||
options: {sort: [['timestamp',-1]]}
|
||||
options: {sort: {'timestamp': -1}}
|
||||
});
|
||||
return q;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user