remove unnecessary client options

This commit is contained in:
JandereDev 2022-04-27 07:31:48 +02:00
parent 2eaa37549a
commit 7ba96a905b
Signed by: Lea
GPG key ID: 5D5E18ACB990F57A

View file

@ -4,11 +4,7 @@ import { logger } from '..';
let AUTUMN_URL = `http://autumnUrl`;
const client = new Client({
messageTimeoutFix: true,
autoReconnect: true,
onPongTimeout: 'RECONNECT',
});
const client = new Client({ });
const login = () => new Promise((resolve: (value: Client) => void) => {
client.loginBot(process.env['REVOLT_TOKEN']!);