Skip to content

Commit

Permalink
Added setting the archive type when a comic is saved [comixed#852]
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Nov 21, 2021
1 parent 347d592 commit 8f8433d
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -178,6 +178,8 @@ public void save(
this.fileAdaptor.moveFile(new File(temporaryFilename), new File(destinationFilename));
log.trace("Updating filename: {}", destinationFilename);
comic.setFilename(destinationFilename);
log.debug("Assigning archive type to comic: {}", targetArchiveType);
comic.setArchiveType(targetArchiveType);
} catch (AdaptorException
| ArchiveAdaptorException
| IOException
Expand Down

0 comments on commit 8f8433d

Please sign in to comment.