mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-22 10:22:39 +01:00
Fix a bug prevent connections using erlpack (#977)
This commit is contained in:
parent
76c85f7181
commit
3c11ffe17a
@ -88,7 +88,7 @@ export async function Connection(
|
||||
if (!["json", "etf"].includes(socket.encoding))
|
||||
return socket.close(CLOSECODES.Decode_error);
|
||||
|
||||
if (socket.encoding === "etf" && erlpack)
|
||||
if (socket.encoding === "etf" && !erlpack)
|
||||
throw new Error("Erlpack is not installed: 'npm i erlpack'");
|
||||
|
||||
socket.version = Number(searchParams.get("version")) || 8;
|
||||
|
Loading…
Reference in New Issue
Block a user