Implemented update series

This commit is contained in:
Joseph Milazzo 2021-02-18 14:07:36 -06:00
parent bdac9e6961
commit cdd44340a2
3 changed files with 41 additions and 1 deletions

View file

@ -80,7 +80,7 @@ namespace API.Services
{
using var stream = entry.Open();
using var thumbnail = Image.ThumbnailStream(stream, ThumbnailWidth);
return thumbnail.WriteToBuffer(".jpg");
return thumbnail.WriteToBuffer(".jpg"); // TODO: Validate this code works with .png files
}
catch (Exception ex)
{