diff --git a/src/organize/organize.cpp b/src/organize/organize.cpp index 81f459b30..9c99c915b 100644 --- a/src/organize/organize.cpp +++ b/src/organize/organize.cpp @@ -251,7 +251,7 @@ void Organize::ProcessSomeFiles() { job.progress_ = std::bind(&Organize::SetSongProgress, this, std::placeholders::_1, !task.transcoded_filename_.isEmpty()); if (destination_->CopyToStorage(job)) { - if (job.remove_original_ && (destination_->source() == Song::Source::Collection || destination_->source() == Song::Source::Device)) { + if (job.remove_original_ && song.is_collection_song() && destination_->source() == Song::Source::Collection) { // Notify other aspects of system that song has been invalidated QString root = destination_->LocalPath(); QFileInfo new_file = QFileInfo(root + "/" + task.song_info_.new_filename_);