Skip to content

Commit

Permalink
Merge pull request #1261 from rommapp/fix/broken-igdb-age-rating-imag…
Browse files Browse the repository at this point in the history
…e-links

fix: Broken IGDB age rating image links
  • Loading branch information
adamantike authored Oct 29, 2024
2 parents e79ff38 + 0190566 commit 2ff37f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions backend/handler/metadata/igdb_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1054,17 +1054,17 @@ async def get_oauth_token(self) -> str:
24: {
"rating": "GRAC_Twelve",
"category": "GRAC",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/grac/grac_twelve.png",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/grac/grac_12.png",
},
25: {
"rating": "GRAC_Fifteen",
"category": "GRAC",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/grac/grac_fifteen.png",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/grac/grac_15.png",
},
26: {
"rating": "GRAC_Eighteen",
"category": "GRAC",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/grac/grac_eighteen.png",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/grac/grac_18.png",
},
27: {
"rating": "GRAC_TESTING",
Expand All @@ -1074,17 +1074,17 @@ async def get_oauth_token(self) -> str:
28: {
"rating": "CLASS_IND_L",
"category": "CLASS_IND",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/classind/classind_l.png",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/class_ind/class_ind_l.png",
},
29: {
"rating": "CLASS_IND_Ten",
"category": "CLASS_IND",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/classind/classind_ten.png",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/class_ind/class_ind_10.png",
},
30: {
"rating": "CLASS_IND_Twelve",
"category": "CLASS_IND",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/classind/classind_twelve.png",
"rating_cover_url": "https://www.igdb.com/icons/rating_icons/class_ind/class_ind_12.png",
},
31: {
"rating": "ACB_G",
Expand Down

0 comments on commit 2ff37f2

Please sign in to comment.