Browse Source

Fixed CI issue

Kristian Vos 3 years ago
parent
commit
39e5c7c2a3
1 changed files with 5 additions and 1 deletions
  1. 5 1
      backend/logic/ws.js

+ 5 - 1
backend/logic/ws.js

@@ -467,7 +467,11 @@ class _WSModule extends CoreClass {
 
 						return CacheModule.runJob(
 							"HSET",
-							{ table: "sessions", key: SID, value: session },
+							{
+								table: "sessions",
+								key: SID,
+								value: session
+							},
 							this
 						).then(session => next(null, session));
 					},