fix: Crash

This commit is contained in:
Ale 2023-09-04 10:41:08 +02:00
parent 86e8d2582e
commit 6dc0f3ca8d
No known key found for this signature in database
GPG key ID: 284AFB134BB2E07D
2 changed files with 1 additions and 8 deletions

View file

@ -2,7 +2,7 @@ import { Client, Message } from "revolt.js";
import { commandHandler } from "./utils/commandHandler"
import { nonCommandHandler } from "./utils/nonCommandHandler"
import config from "../config.json"
const client : Client = new Client();
const client : Client = new Client({ eagerFetching: false });
client.on("ready", async () => {

View file

@ -1,7 +0,0 @@
export interface AlterModel {
id?: number;
owner: string;
prefix: string;
name: string;
profile_pic_url: string;
}