Fix a bug prevent connections using erlpack (#977)

This commit is contained in:
Madeline
2023-02-16 19:31:36 +11:00
committed by GitHub
parent 76c85f7181
commit 3c11ffe17a
+1 -1
View File
@@ -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;