fix: bump synology cached thumbnail size sm->m (#782)

fetchSynologyThumbnailBytes was still serving 240px while the
uncached streamSynologyAsset path had been bumped to 320px in
#761. Align the cached path with the streaming default.
This commit is contained in:
Maurice
2026-04-21 15:21:58 +02:00
parent 9d48c06068
commit e6222894e9
@@ -627,7 +627,9 @@ export async function fetchSynologyThumbnailBytes(
mode: 'download', mode: 'download',
id: parsedId.id, id: parsedId.id,
type: 'unit', type: 'unit',
size: 'sm', // Match the uncached streamSynologyAsset default — 'sm' (240px) looked
// pixelated on retina.
size: 'm',
cache_key: parsedId.cacheKey, cache_key: parsedId.cacheKey,
_sid: sid.data, _sid: sid.data,
}); });