mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-03 16:59:08 +00:00
Merge pull request #444 from chrisk325/patch-11
fix imdb logo not appearing while using mdblist
This commit is contained in:
commit
fc2ff910e6
1 changed files with 3 additions and 3 deletions
|
|
@ -22,7 +22,7 @@ const BREAKPOINTS = {
|
||||||
tv: 1440,
|
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 = {
|
export const RATING_PROVIDERS = {
|
||||||
imdb: {
|
imdb: {
|
||||||
|
|
@ -163,7 +163,7 @@ export const RatingsSection: React.FC<RatingsSectionProps> = ({ imdbId, type })
|
||||||
imdb: {
|
imdb: {
|
||||||
name: 'IMDb',
|
name: 'IMDb',
|
||||||
icon: { uri: IMDb_LOGO },
|
icon: { uri: IMDb_LOGO },
|
||||||
isImage: true,
|
isImage: false,
|
||||||
color: '#F5C518',
|
color: '#F5C518',
|
||||||
transform: (value: number) => value.toFixed(1)
|
transform: (value: number) => value.toFixed(1)
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue