diff --git a/appinfo/info.xml b/appinfo/info.xml
index 14cacd2..a402134 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,7 +5,7 @@
Aria2 and youtube-dl web gui for nextcloud
built-in torrent search;Start and stop Aria2 process, manage Aria2 from the web;
Download videos from youtube, twitter and other sites;
- 0.4.0
+ 0.4.1
agpl
jiaxinhuang
NCDownloader
diff --git a/src/App.vue b/src/App.vue
index e084842..0833f26 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -102,7 +102,7 @@ export default {
if (files) {
let formWrapper = element.closest("form");
let url = formWrapper.getAttribute("action");
- Http.getInstance(url)
+ return Http.getInstance(url)
.setHandler(function (data) {
successCallback(data, element);
})
@@ -121,13 +121,11 @@ export default {