From 38dfc7f2601cf1d1fe6b33f226dfc257a5c19320 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Wed, 1 Jan 2025 18:16:18 +0500 Subject: [PATCH] fix: maunium sticker picker preview url --- stickerpicker/src/index.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/stickerpicker/src/index.js b/stickerpicker/src/index.js index dd06ecb..68b2465 100644 --- a/stickerpicker/src/index.js +++ b/stickerpicker/src/index.js @@ -33,10 +33,7 @@ let HOMESERVER_URL = "https://matrix-client.matrix.org"; // const makeThumbnailURL = mxc => `${HOMESERVER_URL}/_matrix/media/v3/thumbnail/${mxc.slice(6)}?height=128&width=128&method=scale` const makeThumbnailURL = (mxc) => - `${HOMESERVER_URL}/__thumbnail/${mxc.slice(0, 2)}/${mxc.slice( - 2, - 4 - )}/${mxc.slice(4)}`; + `${HOMESERVER_URL}${mxc.slice(0, 2)}/${mxc.slice(2,4)}/${mxc.slice(4)}`; // We need to detect iOS webkit because it has a bug related to scrolling non-fixed divs // This is also used to fix scrolling to sections on Element iOS