Explorar o código

Fixed one more unhandled promise rejection issue

Kristian Vos %!s(int64=4) %!d(string=hai) anos
pai
achega
e37cca5e02
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  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);
                             }
                         },