From 2d77ea4b62b167ceaef3929ea86d5dc5b2b3a9b2 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 26 Jul 2022 10:54:24 -0400 Subject: [PATCH] Readd ID to mosaic --- src/api.ts | 2 +- src/mosaic.ts | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) 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; }