tiny bug fix

This commit is contained in:
Robert McRackan 2021-07-28 10:38:16 -04:00
parent 4e6011711a
commit 3c1db55a95
3 changed files with 283 additions and 282 deletions

View file

@ -179,7 +179,7 @@ namespace LibationWinForms
if (FileManager.AudibleFileStorage.Audio.Exists(productId))
{
var filePath = FileManager.AudibleFileStorage.Audio.GetPath(productId);
if (Go.To.File(filePath))
if (!Go.To.File(filePath))
MessageBox.Show($"File not found:\r\n{filePath}");
return;
}