Consider file case when doing filename comparisons

This commit is contained in:
Ben Sarmiento
2024-01-27 11:54:28 +01:00
parent 803240b2eb
commit e01622064d
3 changed files with 12 additions and 14 deletions

View File

@@ -84,7 +84,7 @@ func (t *TorrentManager) repairAll() {
if toRepair.Cardinality() == 0 {
t.log.Info("Periodic repair found no broken torrents to repair")
} else {
t.log.Debugf("Periodic repair found %d broken torrents to repair in total", toRepair.Cardinality())
t.log.Info("Periodic repair found %d broken torrents to repair in total", toRepair.Cardinality())
toRepair.Each(func(torrent *Torrent) bool {
t.Repair(torrent)