mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-19 19:37:01 -04:00
StickerSpoof: fix small resolutions; AnonymiseFiles: fix extension logic
This commit is contained in:
parent
b032e9b6e3
commit
e0450531ef
2 changed files with 6 additions and 4 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue