mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Fixed /undefined in mosaic urls with <4 imgs
This commit is contained in:
parent
42a5a98ff7
commit
ef9fbc8f73
1 changed files with 3 additions and 1 deletions
|
@ -23,8 +23,10 @@ export const handleMosaic = async (
|
||||||
let path = '';
|
let path = '';
|
||||||
|
|
||||||
for (let j = 0; j < 4; j++) {
|
for (let j = 0; j < 4; j++) {
|
||||||
|
if (typeof mosaicMedia[j] === 'string') {
|
||||||
path += `/${mosaicMedia[j]}`;
|
path += `/${mosaicMedia[j]}`;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const size = calcSize(
|
const size = calcSize(
|
||||||
mediaList.map(i => ({ width: i.width, height: i.height } as Size))
|
mediaList.map(i => ({ width: i.width, height: i.height } as Size))
|
||||||
|
|
Loading…
Add table
Reference in a new issue