diff --git a/apps/readest-app/src/hooks/useFileSelector.ts b/apps/readest-app/src/hooks/useFileSelector.ts index 5f8e8143..b62a06f6 100644 --- a/apps/readest-app/src/hooks/useFileSelector.ts +++ b/apps/readest-app/src/hooks/useFileSelector.ts @@ -45,7 +45,9 @@ const selectFileTauri = async ( appService: AppService, _: (key: string) => string, ): Promise => { - const noFilter = appService?.isIOSApp || (appService?.isAndroidApp && options.type === 'books'); + const noFilter = + appService?.isIOSApp || + (appService?.isAndroidApp && (options.type === 'books' || options.type === 'dictionaries')); const exts = noFilter ? [] : options.extensions || []; const title = options.dialogTitle || _('Select Files'); let files = (await appService?.selectFiles(_(title), exts)) || [];