diff --git a/src/client/actions/fileops.actions.tsx b/src/client/actions/fileops.actions.tsx index d5b1404..dded2b7 100644 --- a/src/client/actions/fileops.actions.tsx +++ b/src/client/actions/fileops.actions.tsx @@ -253,7 +253,13 @@ export const fetchComicVineMatches = }); }; -export const extractComicArchive = (path: string) => async (dispatch) => { +/** + * This method is a proxy to `uncompressFullArchive` which uncompresses complete `rar` or `zip` archives + * @param {string} path The path to the compressed archive + * @param {any} options Options object + * @returns {any} + */ +export const extractComicArchive = (path: string, options: any) => async (dispatch) => { const comicBookPages: string[] = []; dispatch({ type: IMS_COMIC_BOOK_ARCHIVE_EXTRACTION_CALL_IN_PROGRESS,