diff options
author | Vendicated <vendicated@riseup.net> | 2022-11-09 17:30:37 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-11-09 17:30:48 +0100 |
commit | e0450531efa84c42e4857b78176f5e80de2ab12e (patch) | |
tree | dbf6849f623c4b86bb2bff2efd6295095e6f7fc1 | |
parent | b032e9b6e30c456d0a569faa6ea962315822edb2 (diff) | |
download | Vencord-e0450531efa84c42e4857b78176f5e80de2ab12e.tar.gz Vencord-e0450531efa84c42e4857b78176f5e80de2ab12e.tar.bz2 Vencord-e0450531efa84c42e4857b78176f5e80de2ab12e.zip |
StickerSpoof: fix small resolutions; AnonymiseFiles: fix extension logic
-rw-r--r-- | src/plugins/anonymiseFileNames.ts | 4 | ||||
-rw-r--r-- | src/plugins/nitroBypass.ts | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/plugins/anonymiseFileNames.ts b/src/plugins/anonymiseFileNames.ts index 5bae10a..c7c3ed5 100644 --- a/src/plugins/anonymiseFileNames.ts +++ b/src/plugins/anonymiseFileNames.ts @@ -67,7 +67,9 @@ export default definePlugin({ anonymise(file: string) { let name = "image"; - const ext = file.match(/\..+$/g)?.[0] ?? ""; + const extIdx = file.lastIndexOf("."); + const ext = extIdx !== -1 ? file.slice(extIdx) : ""; + switch (Settings.plugins.AnonymiseFileNames.method) { case Methods.Random: const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; diff --git a/src/plugins/nitroBypass.ts b/src/plugins/nitroBypass.ts index be77a4c..9e961a2 100644 --- a/src/plugins/nitroBypass.ts +++ b/src/plugins/nitroBypass.ts @@ -169,14 +169,14 @@ export default definePlugin({ const resolution = Settings.plugins.NitroBypass.stickerSize; const canvas = document.createElement("canvas"); - canvas.width = width; - canvas.height = height; + canvas.width = resolution; + canvas.height = resolution; const ctx = canvas.getContext("2d", { willReadFrequently: true })!; - const scale = resolution / width; + const scale = resolution / Math.max(width, height); ctx.scale(scale, scale); let lastImg: HTMLImageElement | null = null; |