Add google drive support

This commit is contained in:
ZXY101
2024-03-13 09:35:44 +02:00
parent bec5e84067
commit 491b9603af
6 changed files with 291 additions and 13 deletions

View File

@@ -9,7 +9,6 @@ export * from './web-import'
const zipTypes = ['zip', 'cbz', 'ZIP', 'CBZ'];
const imageTypes = ['image/jpeg', 'image/png', 'image/webp'];
export async function unzipManga(file: File) {
const zipFileReader = new Uint8ArrayReader(new Uint8Array(await file.arrayBuffer()));
const zipReader = new ZipReader(zipFileReader);