diff --git a/src/uk/co/majenko/audiobookrecorder/AudiobookRecorder.java b/src/uk/co/majenko/audiobookrecorder/AudiobookRecorder.java index a3b9e0f..88d9793 100644 --- a/src/uk/co/majenko/audiobookrecorder/AudiobookRecorder.java +++ b/src/uk/co/majenko/audiobookrecorder/AudiobookRecorder.java @@ -2891,7 +2891,9 @@ public class AudiobookRecorder extends JFrame implements DocumentListener { to.add(snt); snt.setParentBook(to.getBook()); File destination = snt.getFile(); - Files.copy(source.toPath(), destination.toPath()); + if (from.getBook() != to.getBook()) { + Files.copy(source.toPath(), destination.toPath()); + } } catch (Exception ex) { ex.printStackTrace(); }