Don't copy cache-long on build.

This commit is contained in:
Joseph Milazzo 2025-04-19 12:47:09 -05:00
parent f7fb3a1277
commit f843fac7f4
2 changed files with 2 additions and 0 deletions

View file

@ -115,6 +115,7 @@
<None Remove="Hangfire-log.db" /> <None Remove="Hangfire-log.db" />
<None Remove="obj\**" /> <None Remove="obj\**" />
<None Remove="cache\**" /> <None Remove="cache\**" />
<None Remove="cache-long\**" />
<None Remove="backups\**" /> <None Remove="backups\**" />
<None Remove="logs\**" /> <None Remove="logs\**" />
<None Remove="temp\**" /> <None Remove="temp\**" />

View file

@ -186,6 +186,7 @@ public class CacheService : ICacheService
} }
else else
{ {
// Potential BUG: If the folder is left here and there are no files within, this could theoretically return without proper cache
return chapter; return chapter;
} }
} }