add jpg to list of files missed by file type lib

This commit is contained in:
Abhinav-grd 2021-08-31 17:29:33 +05:30
parent 562385758c
commit cbcdba8229

View file

@ -33,6 +33,7 @@ export enum FILE_TYPE {
// list of format that were missed by type-detection for some files. // list of format that were missed by type-detection for some files.
export const FORMAT_MISSED_BY_FILE_TYPE_LIB = [ export const FORMAT_MISSED_BY_FILE_TYPE_LIB = [
{ fileType: FILE_TYPE.IMAGE, exactType: 'jpeg' }, { fileType: FILE_TYPE.IMAGE, exactType: 'jpeg' },
{ fileType: FILE_TYPE.IMAGE, exactType: 'jpg' },
{ fileType: FILE_TYPE.VIDEO, exactType: 'webm' }, { fileType: FILE_TYPE.VIDEO, exactType: 'webm' },
]; ];