Match rmcrackan's changes

This commit is contained in:
Michael Bucari-Tovo 2022-06-23 11:07:10 -06:00
parent 1470aefd42
commit 52622fadbb
15 changed files with 22 additions and 21 deletions

View file

@ -261,7 +261,7 @@ namespace FileLiberator
var realDest = FileUtility.SaferMoveToValidPath(entry.Path, Path.Combine(destinationDir, Path.GetFileName(entry.Path)), Configuration.Instance.ReplacementCharacters);
FilePathCache.Insert(libraryBook.Book.AudibleProductId, realDest);
// propogate corrected path. Must update cache with corrected path. Also want updated path for cue file (after this for-loop)
// propagate corrected path. Must update cache with corrected path. Also want updated path for cue file (after this for-loop)
entries[i] = entry with { Path = realDest };
}