diff --git a/src/api.ts b/src/api.ts index 3bc71da..c0028a0 100644 --- a/src/api.ts +++ b/src/api.ts @@ -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; } diff --git a/src/mosaic.ts b/src/mosaic.ts index 077a8d7..867e1aa 100644 --- a/src/mosaic.ts +++ b/src/mosaic.ts @@ -1,7 +1,8 @@ import { Constants } from './constants'; export const handleMosaic = async ( - mediaList: APIPhoto[] + mediaList: APIPhoto[], + id: string ): Promise => { 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; }