This commit is contained in:
Bruno Windels 2022-07-04 16:15:59 +02:00
parent 751dfa66a8
commit 34ce8a8e3c
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ export function addCacheBuster(urlStr, random = Math.random) {
export function mapAsFormData(map) {
const formData = new FormData();
for (const [name, value] of map) {
let filename;
// Special case {name: string, blob: BlobHandle} to set a filename.
// This is the format returned by platform.openFile
if (value.blob?.nativeBlob && value.name) {