LastModified on Volumes wasn't updating, validated it does update when data is changed.
This commit is contained in:
parent
13132c25af
commit
71d3af5f52
4 changed files with 10 additions and 5 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue