Forgot to update DTO to send it to the Frontend.
This commit is contained in:
parent
28ce2bbba1
commit
83076f02ad
3 changed files with 18 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue