mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-10 20:52:42 +01:00
Merge pull request #394 from ChrisChrome/erlpack-fix
This commit is contained in:
commit
bdd2ecaea8
838
gateway/package-lock.json
generated
838
gateway/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -38,5 +38,8 @@
|
||||
"typeorm": "^0.2.37",
|
||||
"uuid": "^8.3.2",
|
||||
"ws": "^7.4.2"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@yukikaze-bot/erlpack": "^1.0.1"
|
||||
}
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ import { URL } from "url";
|
||||
import { Session } from "@fosscord/util";
|
||||
var erlpack: any;
|
||||
try {
|
||||
erlpack = require("erlpack");
|
||||
erlpack = require("@yukikaze-bot/erlpack");
|
||||
} catch (error) {}
|
||||
|
||||
// TODO: check rate limit
|
||||
|
@ -1,7 +1,7 @@
|
||||
import WebSocket from "@fosscord/gateway/util/WebSocket";
|
||||
var erlpack: any;
|
||||
try {
|
||||
erlpack = require("erlpack");
|
||||
erlpack = require("@yukikaze-bot/erlpack");
|
||||
} catch (error) {}
|
||||
import OPCodeHandlers from "../opcodes";
|
||||
import { Payload, CLOSECODES, OPCODES } from "@fosscord/gateway/util/Constants";
|
||||
|
@ -1,6 +1,6 @@
|
||||
var erlpack: any;
|
||||
try {
|
||||
erlpack = require("erlpack");
|
||||
erlpack = require("@yukikaze-bot/erlpack");
|
||||
} catch (error) {}
|
||||
import { Payload } from "@fosscord/gateway/util/Constants";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user