Closed
Description
Hi there!!
Currently it's not possible to upload more than 1 file which is overwritten every time that another file is uploaded.
It occurs because the ref path is a constant string 'images'.
In /storage/index.html line 88:
var uploadTask = storageRef.child('images').put(file, metadata);
So something like this should fix this problem:
var uploadTask = storageRef.child('images/' + new Date().getTime() + file.name).put(file, metadata);
Metadata
Metadata
Assignees
Labels
No labels