diff options
| author | Ven <vendicated@riseup.net> | 2022-11-14 16:22:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-14 16:22:50 +0100 |
| commit | a96f8a89f36ccb980334da2274385373aa3ffb24 (patch) | |
| tree | e520f3be75eb2bbd9f3c4d3427f16861b8d7ab6c /src/webpack | |
| parent | 4642b54260a2258d8d0925dcfb5c6934fcf10835 (diff) | |
| download | Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.tar.gz Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.tar.bz2 Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.zip | |
MessageLogger: fixes + ignoreSelf & ignoreBots option (#213)
Diffstat (limited to 'src/webpack')
| -rw-r--r-- | src/webpack/patchWebpack.ts | 2 | ||||
| -rw-r--r-- | src/webpack/webpack.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/webpack/patchWebpack.ts b/src/webpack/patchWebpack.ts index 40a16a6..e17ddfc 100644 --- a/src/webpack/patchWebpack.ts +++ b/src/webpack/patchWebpack.ts @@ -17,7 +17,7 @@ */ import { WEBPACK_CHUNK } from "../utils/constants"; -import Logger from "../utils/logger"; +import Logger from "../utils/Logger"; import { _initWebpack } from "."; let webpackChunk: any[]; diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts index b78afd0..df32132 100644 --- a/src/webpack/webpack.ts +++ b/src/webpack/webpack.ts @@ -19,7 +19,7 @@ import type { WebpackInstance } from "discord-types/other"; import { traceFunction } from "../debug/Tracer"; -import Logger from "../utils/logger"; +import Logger from "../utils/Logger"; import { proxyLazy } from "../utils/proxyLazy"; const logger = new Logger("Webpack"); |
