v0.2.6
changed storeFileLocally
property
previously you had to put the file.content
only, now you will need to put the file
entirely to check the properties of the file
here is a before and after to clarify what you should do:
before:
await storeFileLocally(
file.content,
12,
'/specificFolder'
)
after:
await storeFileLocally(
- file.content,
+ file,
12,
'/specificFolder'
)
Issues Fixed
- Save with original file extension, without browser type detection #12