Copy instead of moving the file
This commit is contained in:
parent
eecb6020ea
commit
2714c748bf
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,8 @@ export default {
|
||||||
await interaction.editReply({ content: '❌ Uh oh! The video is too big!', ephemeral: true });
|
await interaction.editReply({ content: '❌ Uh oh! The video is too big!', ephemeral: true });
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
fs.renameSync(output, `./asset/ytp/userVid/${file}`);
|
// CopyFile instead of rename in case you have /tmp and the asset folder on different a disk.
|
||||||
|
fs.copyFileSync(output, `./asset/ytp/userVid/${file}`);
|
||||||
const mp4 = [];
|
const mp4 = [];
|
||||||
fs.readdirSync('./asset/ytp/userVid/').forEach(f => {
|
fs.readdirSync('./asset/ytp/userVid/').forEach(f => {
|
||||||
if (f.endsWith('mp4')) {
|
if (f.endsWith('mp4')) {
|
||||||
|
|
Loading…
Reference in a new issue