fix broken webpack finds

This commit is contained in:
V 2023-11-23 06:18:34 +01:00
parent 6f05612e34
commit 4832a9433f
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
2 changed files with 5 additions and 6 deletions

View file

@ -20,8 +20,8 @@ import { definePluginSettings } from "@api/Settings";
import { Devs } from "@utils/constants";
import definePlugin, { OptionType } from "@utils/types";
import { saveFile } from "@utils/web";
import { findByProps, findLazy } from "@webpack";
import { Clipboard } from "@webpack/common";
import { findByProps } from "@webpack";
import { Clipboard, ComponentDispatch } from "@webpack/common";
async function fetchImage(url: string) {
const res = await fetch(url);
@ -30,7 +30,6 @@ async function fetchImage(url: string) {
return await res.blob();
}
const MiniDispatcher = findLazy(m => m.emitter?._events?.INSERT_TEXT);
const settings = definePluginSettings({
// This needs to be all in one setting because to enable any of these, we need to make Discord use their desktop context
@ -213,7 +212,7 @@ export default definePlugin({
cut() {
this.copy();
MiniDispatcher.dispatch("INSERT_TEXT", { rawText: "" });
ComponentDispatch.dispatch("INSERT_TEXT", { rawText: "" });
},
async paste() {