浏览代码

Fixed one more unhandled promise rejection issue

Kristian Vos 4 年之前
父节点
当前提交
e37cca5e02
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      backend/logic/actions/users.js

+ 3 - 1
backend/logic/actions/users.js

@@ -598,7 +598,9 @@ module.exports = {
                                         channel: "sessions",
                                         key: sessionId,
                                     })
-                                    .then(() => callback(null))
+                                    .then(() => {
+                                        callback(null);
+                                    })
                                     .catch(next);
                             }
                         },