14 lines
505 B
TypeScript
14 lines
505 B
TypeScript
import { ImageOrVideo } from 'react-native-image-crop-picker';
|
|||
|
|||
import { isIOS } from '../../utils/deviceInfo';
|
|||
|
|||
const regex = new RegExp(/\.[^/.]+$/); // Check from last '.' of the string
|
|||
|
|||
export const forceJpgExtension = (attachment: ImageOrVideo): ImageOrVideo => {
|
|||
if (isIOS && attachment.mime === 'image/jpeg' && attachment.filename) {
|
|||
// Replace files extension that mime type is 'image/jpeg' to .jpg;
|
|||
attachment.filename = attachment.filename.replace(regex, '.jpg');
|
|||
}
|
|||
return attachment;
|
|||
};
|