mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Reverted change
This commit is contained in:
parent
dfe2db20df
commit
1ea780e312
1 changed files with 11 additions and 4 deletions
|
@ -31,10 +31,17 @@ export const handleMosaic = async (
|
|||
const baseUrl = `https://${selectedDomain}/`;
|
||||
let path = '';
|
||||
|
||||
for (let i = 0; i++; i < 3) {
|
||||
if (mosaicMedia[i]) {
|
||||
path += `/${mosaicMedia[i]}`;
|
||||
}
|
||||
if (mosaicMedia[0]) {
|
||||
path += `/${mosaicMedia[0]}`;
|
||||
}
|
||||
if (mosaicMedia[1]) {
|
||||
path += `/${mosaicMedia[1]}`;
|
||||
}
|
||||
if (mosaicMedia[2]) {
|
||||
path += `/${mosaicMedia[2]}`;
|
||||
}
|
||||
if (mosaicMedia[3]) {
|
||||
path += `/${mosaicMedia[3]}`;
|
||||
}
|
||||
|
||||
const size = calcSize(mediaList.map(i => ({ width: i.width, height: i.height } as Size)));
|
||||
|
|
Loading…
Add table
Reference in a new issue