Explorar el Código

Fixed CI issue

Kristian Vos hace 3 años
padre
commit
39e5c7c2a3
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  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));
 					},