Skip to content

Commit

Permalink
fixup! Library: improve logged scan summary, also log new and missing…
Browse files Browse the repository at this point in the history
… tracks
  • Loading branch information
ronso0 committed Oct 29, 2024
1 parent c2554f2 commit 5141b18
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/library/scanner/libraryscanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void LibraryScanner::slotStartScan() {
changeScannerState(SCANNING);

QSet<QString> trackLocations = m_trackDao.getAllTrackLocations();
// Store number of existing tracks so we can calculat the number
// Store number of existing tracks so we can calculate the number
// of missing tracks in slotFinishUnhashedScan().
m_previouslyMissingTracks = m_trackDao.getAllMissingTrackLocations();
m_numPreviouslyExistingTracks = m_trackDao.getAllExistingTrackLocations().size();
Expand Down Expand Up @@ -369,8 +369,7 @@ void LibraryScanner::cleanUpScan() {
<< "Found"
<< m_numRelocatedTracks
<< "moved track(s)";
m_scannerGlobal->addedTracks(),
emit tracksRelocated(relocatedTracks);
emit tracksRelocated(relocatedTracks);
}
}

Expand Down

0 comments on commit 5141b18

Please sign in to comment.