summaryrefslogtreecommitdiffstats
path: root/collections
diff options
context:
space:
mode:
Diffstat (limited to 'collections')
-rw-r--r--collections/users.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/collections/users.js b/collections/users.js
index 043f93e5..28b63ba7 100644
--- a/collections/users.js
+++ b/collections/users.js
@@ -14,7 +14,7 @@ Users.helpers({
},
starredBoards: function() {
var starredBoardIds = this.profile.starredBoards || [];
- return Boards.find({_id: {$in: starredBoardIds}});
+ return Boards.find({archived: false, _id: {$in: starredBoardIds}});
},
hasStarred: function(boardId) {
var starredBoardIds = this.profile.starredBoards || [];