Merge pull request #17229 from ShirasawaSama/feat/dynamic-load-heic2any

feat: dynamically load heic2any in channel MessageInput
This commit is contained in:
Tim Jaeryang Baek 2025-09-06 18:26:57 +04:00 committed by GitHub
commit fe0665605a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 {