start 1.11.10

This commit is contained in:
defnotken
2025-09-13 22:51:56 -05:00
parent 14ec282f21
commit bf91dacb6f
3 changed files with 11 additions and 2 deletions

View File

@@ -832,7 +832,14 @@ public class SettingsUi : WindowMediatorSubscriberBase
{
foreach (var file in Directory.GetFiles(_configService.Current.CacheFolder))
{
File.Delete(file);
try
{
File.Delete(file);
}
catch (IOException ex)
{
_logger.LogWarning(ex, $"Could not delete file {file} because it is in use.");
}
}
});
}