Skip to content

Commit

Permalink
Merge pull request #187 from Zren/issue-137
Browse files Browse the repository at this point in the history
Fix #137 : Missing scripts within group
  • Loading branch information
sizzlemctwizzle committed Jun 19, 2014
2 parents b2e9cc9 + 842fd6c commit 649705d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/group.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ exports.view = function (req, res, next) {
scriptListQuery.find({_id: {$in: group._scriptIds}});

// scriptListQuery: isLib=false
scriptListQuery.find({isLib: false});
scriptListQuery.find({isLib: {$ne: true}});

// scriptListQuery: Defaults
modelQuery.applyScriptListQueryDefaults(scriptListQuery, options, req);
Expand Down

0 comments on commit 649705d

Please sign in to comment.