diff options
author | Ariana <me@adryd.com> | 2022-10-04 21:33:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 03:33:37 +0200 |
commit | 77aa0c78a02d4c3937a93173836b67087beea2b5 (patch) | |
tree | e2d010d9e131dce6edb7737f1ede9c127b4e138f /src/plugins/unindent.ts | |
parent | e010b2d63e5c062d038956a332c159ea48ea960a (diff) | |
download | Vencord-77aa0c78a02d4c3937a93173836b67087beea2b5.tar.gz Vencord-77aa0c78a02d4c3937a93173836b67087beea2b5.tar.bz2 Vencord-77aa0c78a02d4c3937a93173836b67087beea2b5.zip |
fix(plugin): add MessageEventsAPI to dependencies of unindent (#48)
Diffstat (limited to 'src/plugins/unindent.ts')
-rw-r--r-- | src/plugins/unindent.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/unindent.ts b/src/plugins/unindent.ts index d97de11..608020f 100644 --- a/src/plugins/unindent.ts +++ b/src/plugins/unindent.ts @@ -6,6 +6,7 @@ export default definePlugin({ name: "Unindent", description: "Trims leading indentation from codeblocks", authors: [Devs.Ven], + dependencies: ["MessageEventsAPI"], patches: [ { find: "inQuote:", |