Show machine photo thumbnails in machine details.

This commit is contained in:
2025-11-15 20:07:52 +00:00
parent 6a52c1f067
commit 1dcb062c35
6 changed files with 154 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ public sealed class MachinePhotoCache
public async Task<Stream> GetThumbnailAsync(Guid photoId)
{
var filename = $"{photoId}.svg";
var filename = $"{photoId}.webp";
Stream retStream;
@@ -53,7 +53,7 @@ public sealed class MachinePhotoCache
public async Task<Stream> GetPhotoAsync(Guid photoId)
{
var filename = $"{photoId}.svg";
var filename = $"{photoId}.webp";
Stream retStream;