Merge remote-tracking branch 'upstream/dev'

This commit is contained in:
thororen1234 2024-06-02 16:40:03 -04:00
commit ad0b1a5dd3
9 changed files with 201 additions and 162 deletions

View file

@ -32,7 +32,7 @@ export class Logger {
constructor(public name: string, public color: string = "white") { }
private _log(level: "log" | "error" | "warn" | "info" | "debug", levelColor: string, args: any[], customFmt = "") {
if (IS_REPORTER) {
if (IS_REPORTER && IS_WEB) {
console[level]("[Vencord]", this.name + ":", ...args);
return;
}