diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-06 16:42:51 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-06 16:42:51 +0200 |
| commit | 341b76441b0c9a3167d81c8d4fd8e7a260763604 (patch) | |
| tree | 4ef38af6b524d44b0e2b2a81aeb910f41db52be8 /app/client/audio/wav2pix.js | |
| parent | 31fbca46a82a33bd8038f2d40722e9e0ffc61253 (diff) | |
more unique names for zip files
Diffstat (limited to 'app/client/audio/wav2pix.js')
| -rw-r--r-- | app/client/audio/wav2pix.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/client/audio/wav2pix.js b/app/client/audio/wav2pix.js index 9bd7a15..1a84e16 100644 --- a/app/client/audio/wav2pix.js +++ b/app/client/audio/wav2pix.js @@ -101,7 +101,7 @@ export const buildZip = (name, file, { frame_step=FRAME_STEP, frame_start=0, max // dispatch event dispatch({ type: types.wav2pix.finish, message: 'Rendered ' + count + ' images' }) zip.generateAsync({ type: "blob" }).then(content => { - dispatch({ type: types.wav2pix.zip }) + dispatch({ type: types.wav2pix.zip, size: content.size }) // FileSaver.saveAs(content, "wav2pix_" + name + ".zip") resolve({ zip: content, |
