diff --git a/src/app/handlers/xdgurl.cpp b/src/app/handlers/xdgurl.cpp
index e14eaae487244eb5b66f1489e95609a07168740d..c5709c2f82a1a4637f3e2a6e8adce4872ba31839 100644
--- a/src/app/handlers/xdgurl.cpp
+++ b/src/app/handlers/xdgurl.cpp
@@ -66,7 +66,6 @@ bool XdgUrl::isValid()
             && !filename.isEmpty()) {
         return true;
     }
-
     return false;
 }
 
@@ -194,14 +193,8 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource)
 {
     QJsonObject result;
 
-    QString type = metadata_["type"].toString();
-    QString destination = destinations_[type].toString();
-    QString path = destination + "/" + metadata_["filename"].toString();
     QString tempPath = qtlibs::Dir::tempPath() + "/" + metadata_["filename"].toString();
 
-    qtlibs::Dir(destination).make();
-    qtlibs::File(path).remove(); // Remove previous downloaded file
-
     if (!resource->saveData(tempPath)) {
         result["status"] = QString("error_save");
         result["message"] = QString("Failed to save data as " + tempPath);
@@ -211,6 +204,13 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource)
 
     qtlibs::Package package(tempPath);
 
+    QString type = metadata_["type"].toString();
+    QString destination = destinations_[type].toString();
+    QString path = destination + "/" + metadata_["filename"].toString();
+
+    qtlibs::Dir(destination).make();
+    qtlibs::File(path).remove(); // Remove previous downloaded file
+
     if (type == "bin"
             && package.installAsProgram(path)) {
         result["message"] = QString("The file has been installed into " + destination);