Fixed /undefined in mosaic urls with <4 imgs

This commit is contained in:
dangered wolf 2022-08-23 23:21:27 -04:00
parent 42a5a98ff7
commit ef9fbc8f73
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -23,8 +23,10 @@ export const handleMosaic = async (
let path = '';
for (let j = 0; j < 4; j++) {
if (typeof mosaicMedia[j] === 'string') {
path += `/${mosaicMedia[j]}`;
}
}
const size = calcSize(
mediaList.map(i => ({ width: i.width, height: i.height } as Size))