fixes #1015. lolwhoops

This commit is contained in:
Danny Coates 2018-11-19 10:34:58 -08:00
parent 0dc7398414
commit c99697caae
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB

View File

@ -413,6 +413,6 @@ module.exports.downloading = function(state, emit) {
function cancel(event) { function cancel(event) {
event.preventDefault(); event.preventDefault();
event.target.disabled = true; event.target.disabled = true;
emit('download', archive); emit('cancel');
} }
}; };