Return not found on hash error

This commit is contained in:
Timothy Baldridge 2023-10-20 23:17:15 +01:00
parent 25dd5a0474
commit ce7198e792

View File

@ -141,6 +141,7 @@ public class Proxy : ControllerBase
{
if (tempFile.Path.FileExists())
tempFile.Path.Delete();
return NotFound();
}
await PutCacheEntry(tempFile.Path, cacheName, hashResult);