From d14271d036febed16a55480abb4d751449b431a9 Mon Sep 17 00:00:00 2001 From: Nischay Date: Sun, 12 May 2024 22:14:27 +0530 Subject: [PATCH] Remove unncessary extension from URL and erroneous script tag --- web/index.html | 2 +- web/src/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/index.html b/web/index.html index 92c1d3f..9407221 100644 --- a/web/index.html +++ b/web/index.html @@ -4,7 +4,7 @@ Maunium sticker picker - + diff --git a/web/src/index.js b/web/src/index.js index 1681c85..cf17d45 100644 --- a/web/src/index.js +++ b/web/src/index.js @@ -92,7 +92,7 @@ class GiphySearchTab extends Component { }, }, "msgtype": "m.image", - "url": gif_homeserver+jsonElement.id+".gif" + "url": gif_homeserver+jsonElement.id }; this.setState((prevState) => ({ GIFById: {...prevState.GIFById, [id]: updatedItem}}));