From 45a709745643bda7a282742de5da1aee418995a6 Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Mon, 14 Nov 2016 08:29:19 +0900 Subject: [PATCH] Remove temporally file --- src/app/handlers/xdgurl.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/app/handlers/xdgurl.cpp b/src/app/handlers/xdgurl.cpp index f4f492f..b426947 100644 --- a/src/app/handlers/xdgurl.cpp +++ b/src/app/handlers/xdgurl.cpp @@ -201,8 +201,6 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource) return; } - qtlibs::Package package(tempPath); - QString type = metadata_["type"].toString(); QString destination = destinations_[type].toString(); QString path = destination + "/" + metadata_["filename"].toString(); @@ -210,6 +208,9 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource) qtlibs::Dir(destination).make(); qtlibs::File(path).remove(); // Remove previous downloaded file + qtlibs::File tempFile(tempPath); + qtlibs::Package package(tempPath); + if (type == "bin" && package.installAsProgram(path)) { result["message"] = QString("The file has been installed into " + destination); @@ -245,12 +246,15 @@ void XdgUrl::installDownloadedFile(qtlibs::NetworkResource *resource) result["message"] = QString("The file has been installed into " + destination); } else { + tempFile.remove(); result["status"] = QString("error_install"); result["message"] = QString("Failed to installation"); emit error(result); return; } + tempFile.remove(); + destination_ = destination; result["status"] = QString("success_install"); -- GitLab