root-gg / plik

Plik is a temporary file upload system (Wetransfer like) in Go.
https://plik.root.gg
Other
1.42k stars 167 forks source link

Bug fixed: commas break the format in curl attachments #498

Closed NeumoNeumo closed 10 months ago

NeumoNeumo commented 10 months ago

When there's comma in the filename like "Brains, Minds, and Machines: Vision and Action.mp4", the -F flag in the bash is like

-F "file=@Brains, Minds, and Machines: Vision and Action.mp4;filename=Brains, Minds, and Machines: Vision and Action.mp4"

The comma will split the information unexpectedly. We can add double quotes to fix this problem.

camathieu commented 10 months ago

Thanks for the contribution