feat: dynamically load heic2any in channel MessageInput

This commit is contained in:
Shirasawa 2025-09-05 21:34:17 +08:00
parent 5b3eae3855
commit eb64f7bdb3

View file

@ -1,7 +1,6 @@
<script lang="ts">
import { toast } from 'svelte-sonner';
import { v4 as uuidv4 } from 'uuid';
import heic2any from 'heic2any';
import { tick, getContext, onMount, onDestroy } from 'svelte';
@ -9,7 +8,7 @@
import { config, mobile, settings, socket, user } from '$lib/stores';
import {
blobToFile,
convertHeicToJpeg,
compressImage,
extractInputVariables,
getAge,
@ -379,7 +378,7 @@
reader.readAsDataURL(
file['type'] === 'image/heic'
? await heic2any({ blob: file, toType: 'image/jpeg' })
? await convertHeicToJpeg(file)
: file
);
} else {