Readd ID to mosaic

This commit is contained in:
dangered wolf 2022-07-26 10:54:24 -04:00
parent 748a480b70
commit 2d77ea4b62
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 5 additions and 4 deletions

View file

@ -99,7 +99,7 @@ const populateTweetProperties = async (
}
if ((apiTweet.media?.photos?.length || 0) > 1) {
const mosaic = await handleMosaic(apiTweet.media?.photos || []);
const mosaic = await handleMosaic(apiTweet.media?.photos || [], tweet.id_str);
if (typeof apiTweet.media !== 'undefined' && mosaic !== null) {
apiTweet.media.mosaic = mosaic;
}

View file

@ -1,7 +1,8 @@
import { Constants } from './constants';
export const handleMosaic = async (
mediaList: APIPhoto[]
mediaList: APIPhoto[],
id: string
): Promise<APIMosaicPhoto | null> => {
const mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
let selectedDomain: string | null = null;
@ -47,8 +48,8 @@ export const handleMosaic = async (
height: mediaList.reduce((acc, media) => acc + media.height, 0),
width: mediaList.reduce((acc, media) => acc + media.width, 0),
formats: {
jpeg: `${baseUrl}jpeg${path}`,
webp: `${baseUrl}webp${path}`
jpeg: `${baseUrl}jpeg/${id}${path}`,
webp: `${baseUrl}webp/${id}${path}`
}
} as APIMosaicPhoto;
}