Commit 7caf2613 authored by Alp Deniz Ogut's avatar Alp Deniz Ogut
Browse files

Fix importers scope

parent f2319577
No related merge requests found
Pipeline #14825 passed with stage
in 7 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -412,7 +412,7 @@ var app = new Vue({
console.log(`Run ${response.status}: ${JSON.stringify(response)}`);
let pluginName = response.pluginName.indexOf('dropbox') != -1? 'dropbox': 'flickr';
if (['started', 'done', 'error', 'daemon'].indexOf(response.status) !== -1) {
this.importers[pluginName]['status'] = response.status;
self.importers[pluginName]['status'] = response.status;
clearInterval(interval);
interval = null;
return;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment