Forgot to update DTO to send it to the Frontend.

This commit is contained in:
Joseph Milazzo 2021-01-12 14:09:20 -06:00
parent 28ce2bbba1
commit 83076f02ad
3 changed files with 18 additions and 0 deletions

View file

@ -26,8 +26,18 @@ namespace API.Services
_numericComparer = new NumericComparer();
}
private bool CacheDirectoryIsAccessible()
{
var di = new DirectoryInfo(_cacheDirectory);
return di.Exists;
}
public async Task<Volume> Ensure(int volumeId)
{
if (!CacheDirectoryIsAccessible())
{
return null;
}
Volume volume = await _seriesRepository.GetVolumeAsync(volumeId);
foreach (var file in volume.Files)
{
@ -44,6 +54,12 @@ namespace API.Services
{
_logger.LogInformation("Performing cleanup of Cache directory");
if (!CacheDirectoryIsAccessible())
{
_logger.LogError($"Cache directory {_cacheDirectory} is not accessible or does not exist.");
return;
}
DirectoryInfo di = new DirectoryInfo(_cacheDirectory);
try