Fix mime type
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

2022.01
Willem Dantuma 2021-03-02 17:21:54 +01:00
parent b000d5119a
commit c7da0866ef
1 changed files with 1 additions and 1 deletions

View File

@ -46,6 +46,6 @@ export class ImageService {
}
blobToFile(blob:Blob, filename:string):File {
return new File([blob],filename);
return new File([blob],filename,{type:blob.type});
}
}