fix(randomiseFileNames): work correctly on web (#40)
* fix(randomiseFileNames): work correctly on web * fix the fix
This commit is contained in:
parent
e1027e06c1
commit
c5e0c7a6e7
@ -23,6 +23,6 @@ export default definePlugin({
|
|||||||
{ length: 7 },
|
{ length: 7 },
|
||||||
() => chars[Math.floor(Math.random() * chars.length)]
|
() => chars[Math.floor(Math.random() * chars.length)]
|
||||||
).join("");
|
).join("");
|
||||||
return rand + window.DiscordNative.fileManager.extname(file);
|
return rand + (file.lastIndexOf(".") > -1 ? file.slice(file.lastIndexOf(".")) : "")
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user