From 983f33556f8f789d766abf44638292785d5600e9 Mon Sep 17 00:00:00 2001 From: chrisk325 Date: Wed, 28 Jan 2026 19:41:51 +0530 Subject: [PATCH] fix imdb logo not appearing while using mdblist --- src/components/metadata/RatingsSection.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/metadata/RatingsSection.tsx b/src/components/metadata/RatingsSection.tsx index 92b5e3b3..53f1ccd6 100644 --- a/src/components/metadata/RatingsSection.tsx +++ b/src/components/metadata/RatingsSection.tsx @@ -22,7 +22,7 @@ const BREAKPOINTS = { tv: 1440, }; -const IMDb_LOGO = 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/IMDB_Logo_2016.svg/575px-IMDB_Logo_2016.svg.png'; +const IMDb_LOGO = 'https://upload.wikimedia.org/wikipedia/commons/6/69/IMDB_Logo_2016.svg'; export const RATING_PROVIDERS = { imdb: { @@ -163,7 +163,7 @@ export const RatingsSection: React.FC = ({ imdbId, type }) imdb: { name: 'IMDb', icon: { uri: IMDb_LOGO }, - isImage: true, + isImage: false, color: '#F5C518', transform: (value: number) => value.toFixed(1) }, @@ -311,4 +311,4 @@ const styles = StyleSheet.create({ fontSize: 14, fontWeight: '600', }, -}); \ No newline at end of file +});