mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-18 02:47:03 -04:00
fix broken webpack finds
This commit is contained in:
parent
6f05612e34
commit
4832a9433f
2 changed files with 5 additions and 6 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue