Fix bug
This commit is contained in:
parent
d6d9b04157
commit
5cd7c59f7b
1 changed files with 7 additions and 5 deletions
|
@ -228,11 +228,13 @@ module.exports = (params, user: IUser, app) => new Promise(async (res, rej) => {
|
|||
// -----------------------------------------------------------
|
||||
// Post processes
|
||||
|
||||
Channel.update({ _id: channel._id }, {
|
||||
$inc: {
|
||||
index: 1
|
||||
}
|
||||
});
|
||||
if (channel) {
|
||||
Channel.update({ _id: channel._id }, {
|
||||
$inc: {
|
||||
index: 1
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
User.update({ _id: user._id }, {
|
||||
$set: {
|
||||
|
|
Loading…
Reference in a new issue