diff --git a/commands/utility/download.js b/commands/utility/download.js
index a1a8ce31..523d14e7 100644
--- a/commands/utility/download.js
+++ b/commands/utility/download.js
@@ -127,12 +127,13 @@ class DownloadCommand extends Command {
 							.catch(err => {
 								console.error(err);
 								compressmsg.delete();
+								loadingmsg.delete();
 								return message.channel.send('File too big');		
 							});			
 					});
 				} else {
-					message.delete();
 					loadingmsg.delete();
+					message.delete();
 
 					return message.channel.send({embed: Embed, files: [`${os.tmpdir()}/${fileName}.mp4`]})
 						.catch(err => {