forked from Supositware/Haha-Yes
Update file size limit
This commit is contained in:
parent
543ab35c9e
commit
59bf0b9430
2 changed files with 4 additions and 3 deletions
|
@ -23,6 +23,7 @@ export default {
|
|||
alias: ['v2g'],
|
||||
async execute(interaction, args) {
|
||||
await interaction.deferReply({ ephemeral: false });
|
||||
const maxFileSize = await utils.getMaxFileSize(interaction.guild);
|
||||
const url = args.url;
|
||||
|
||||
if (!await utils.stringIsAValidurl(url)) {
|
||||
|
@ -51,12 +52,12 @@ export default {
|
|||
await interaction.deleteReply();
|
||||
await interaction.followUp('❌ Uh oh! The video once converted is too big!', { ephemeral: true });
|
||||
}
|
||||
else if (fileSize > await utils.getMaxFileSize(interaction.guild)) {
|
||||
else if (fileSize > maxFileSize) {
|
||||
const fileURL = await utils.upload(gifsicleOutput)
|
||||
.catch(err => {
|
||||
console.error(err);
|
||||
});
|
||||
await interaction.editReply({ content: `ℹ️ File was bigger than 8 mb. It has been uploaded to an external site.\n${fileURL}`, ephemeral: false });
|
||||
await interaction.editReply({ content: `ℹ️ File was bigger than ${maxFileSize} mb. It has been uploaded to an external site.\n${fileURL}`, ephemeral: false });
|
||||
}
|
||||
else {
|
||||
await interaction.editReply({ files: [gifsicleOutput], ephemeral: false });
|
||||
|
|
|
@ -16,7 +16,7 @@ You need to install the following
|
|||
* HandBrakeCLI (For [download](commands/utility/download.js))
|
||||
* gifsicle (For [vid2gif](commands/utility/vid2gif.js))
|
||||
* gifki (For [vid2gif](commands/utility/vid2gif.js))
|
||||
* Somewhere to upload files larger than 8 mb (I use a self hosted [XBackBone](https://github.com/SergiX44/XBackBone/) with the upload.sh script made from it, you can use anything else just need to be located in bin/upload.sh)
|
||||
* Somewhere to upload files larger than the file limit, currently 25 mb. (I use a self hosted [XBackBone](https://github.com/SergiX44/XBackBone/) with the upload.sh script made from it, you can use anything else just need to be located in bin/upload.sh)
|
||||
|
||||
### Installing
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue