1.1.15 - importer fixes, queue virtual scroller

This commit is contained in:
exttex
2021-01-26 20:13:01 +01:00
parent b0ebe66d54
commit babaa68d91
36 changed files with 854 additions and 325 deletions

View File

@ -614,6 +614,20 @@ new Vue({
this.importer.active = false;
this.importer.done = false;
});
//Album
this.sockets.subscribe('importerAlbum', a => {
//Not downloading, got albumn
if (a) {
this.$router.push({
path: '/album',
query: {album: JSON.stringify(a)}
});
}
//Mark done
this.importer.error = false;
this.importer.active = false;
this.importer.done = false;
});
r();
},