-
Notifications
You must be signed in to change notification settings - Fork 33
Migrate to FormData #435
Copy link
Copy link
Open
Labels
P0Critical: Tackled by core team ASAPCritical: Tackled by core team ASAPdif:hardHaving worked on the specific codebase is importantHaving worked on the specific codebase is importantkind:enhancementA net-new feature or an improvement to an existing featureA net-new feature or an improvement to an existing featuretype:issue
Metadata
Metadata
Assignees
Labels
P0Critical: Tackled by core team ASAPCritical: Tackled by core team ASAPdif:hardHaving worked on the specific codebase is importantHaving worked on the specific codebase is importantkind:enhancementA net-new feature or an improvement to an existing featureA net-new feature or an improvement to an existing featuretype:issue
Currently, when uploading collection in any form (eq. using
uploadCollectionoruploadFilesetc.) it might seems like the user can specify entry's content type (e.g. using thenew File(..., ..., {type: 'come content type'})), which then, unfortunately, is ignored because we use Tar way how to upload collection (in Bee then the content type is guessed based on extension).As soon as ethersphere/bee#2578 is solved I would like to migrate uploading collection using
FormDatawhich then would allow this to be solved.