fix: post queue notifs

fix moderators not showing up immediately when adding them
This commit is contained in:
Barış Soner Uşaklı
2019-01-14 22:38:15 -05:00
parent 2614a2e5ce
commit ac655564bb
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ module.exports = function (Posts) {
], next);
},
function (results, next) {
next(null, _.union(results));
next(null, _.uniq(_.flattenDeep(results)));
},
], callback);
}