aboutsummaryrefslogtreecommitdiff
path: root/src/webpack/common/utils.ts
diff options
context:
space:
mode:
authorV <vendicated@riseup.net>2023-08-12 05:27:59 +0200
committerGitHub <noreply@github.com>2023-08-12 05:27:59 +0200
commit3e732646e5ab83f76b34ec7fdb3d9d8c68faca8d (patch)
tree7d407485fa5cfb7a4e14f5d097c1e6d259c39a7b /src/webpack/common/utils.ts
parentd5b3b510502e952e7d0a6033f6c69fe1042ba3f1 (diff)
downloadVencord-3e732646e5ab83f76b34ec7fdb3d9d8c68faca8d.tar.gz
Vencord-3e732646e5ab83f76b34ec7fdb3d9d8c68faca8d.tar.bz2
Vencord-3e732646e5ab83f76b34ec7fdb3d9d8c68faca8d.zip
Fix plugins broken by latest canary update (#1637)
* Fix WebContextMenus * BetterGifAltText: futureproof find * Fix pronoundb profile patch * Fix NoScreensharePreview * Fix FakeNitro emote text patch --------- Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com>
Diffstat (limited to 'src/webpack/common/utils.ts')
-rw-r--r--src/webpack/common/utils.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webpack/common/utils.ts b/src/webpack/common/utils.ts
index 40a45da..2c814de 100644
--- a/src/webpack/common/utils.ts
+++ b/src/webpack/common/utils.ts
@@ -93,7 +93,7 @@ export const UserUtils = {
};
export const Clipboard = mapMangledModuleLazy('document.queryCommandEnabled("copy")||document.queryCommandSupported("copy")', {
- copy: filters.byCode(".default.copy("),
+ copy: filters.byCode(".copy("),
SUPPORTS_COPY: x => typeof x === "boolean",
});