I'm trying to upload a video using such a structure
export class VideoUploadData {
@IsFile()
@MaxFileSize(10 * 1024 * 1204)
@ApiProperty()
file: MemoryStoredFile;
@ApiProperty()
fieldName: string;
}
In version 1.7.1
file.mimetype contained a mime type of video, But in version 1.8.3 it is undefined. I see busBoyMimeType property but it is protected
I'm trying to upload a video using such a structure
In version 1.7.1
file.mimetypecontained a mime type of video, But in version 1.8.3 it is undefined. I see busBoyMimeType property but it is protected