LastModified on Volumes wasn't updating, validated it does update when data is changed.

This commit is contained in:
Joseph Milazzo 2021-04-01 15:59:07 -05:00
parent 13132c25af
commit 71d3af5f52
4 changed files with 10 additions and 5 deletions

View file

@ -22,7 +22,7 @@ namespace API.Controllers
const string format = "jpeg";
Response.AddCacheHeader(content);
return File(content, "image/" + format);
return File(content, "image/" + format, $"chapterId");
}
[HttpGet("volume-cover")]
@ -33,7 +33,7 @@ namespace API.Controllers
const string format = "jpeg";
Response.AddCacheHeader(content);
return File(content, "image/" + format);
return File(content, "image/" + format, $"volumeId");
}
[HttpGet("series-cover")]
@ -44,7 +44,7 @@ namespace API.Controllers
const string format = "jpeg";
Response.AddCacheHeader(content);
return File(content, "image/" + format);
return File(content, "image/" + format, $"seriesId");
}
}
}