Skip to content

Commit

Permalink
fix(TuneIn): fix presence not working with switch stations (#8987)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkvillager2 authored Dec 22, 2024
1 parent 373fda2 commit a1e1a37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions websites/T/TuneIn/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
],
"service": "TuneIn",
"description": {
"en": "TuneIn In is an American audio streaming service delivering live news, radio, sports, music, and podcasts to over 60 million monthly active users. As of 2019, TuneIn has more than 75 million monthly active users. TuneIn is operated by company TuneIn Inc which is based in San Francisco, California.",
"nl": "TuneIn In is een Amerikaanse audiostreamingservice die live nieuws, radio, sport, muziek en podcasts levert aan meer dan 60 miljoen maandelijkse actieve gebruikers. Vanaf 2019 heeft TuneIn meer dan 75 miljoen maandelijkse actieve gebruikers. TuneIn wordt beheerd door het bedrijf TuneIn Inc, gevestigd in San Francisco, Californië.",
"en": "TuneIn Inc. is an American audio streaming service delivering live news, radio, sports, music, and podcasts to over 60 million monthly active users. As of 2019, TuneIn has more than 75 million monthly active users. TuneIn is operated by company TuneIn Inc which is based in San Francisco, California.",
"nl": "TuneIn Inc. is een Amerikaanse audiostreamingservice die live nieuws, radio, sport, muziek en podcasts levert aan meer dan 60 miljoen maandelijkse actieve gebruikers. Vanaf 2019 heeft TuneIn meer dan 75 miljoen maandelijkse actieve gebruikers. TuneIn wordt beheerd door het bedrijf TuneIn Inc, gevestigd in San Francisco, Californië.",
"pt_BR": "TuneIn Inc. é um serviço de streaming de áudio que oferece notícias ao vivo, rádio, esportes, música e podcasts para mais de setecentos milhões de usuários ativos mensais. TuneIn conta com mais de setecentos e cinco milhões de usuários ativos mensais desde 2019. Sua sede fica localizada em São Francisco, Califórnia."
},
"url": "tunein.com",
"version": "2.2.1",
"version": "2.2.2",
"logo": "https://cdn.rcd.gg/PreMiD/websites/T/TuneIn/assets/logo.png",
"thumbnail": "https://cdn.rcd.gg/PreMiD/websites/T/TuneIn/assets/thumbnail.png",
"color": "#33B6A8",
Expand Down
4 changes: 3 additions & 1 deletion websites/T/TuneIn/presence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ presence.on("UpdateData", async () => {
else {
const title = document.querySelector("#playerTitle").textContent,
author = document.querySelector("#playerSubtitle").textContent,
artwork = document.querySelector("#playerArtwork").getAttribute("src");
artwork = document.querySelector<HTMLImageElement>(
"#directoryStationArtwork,#playerArtwork"
)?.src;

if (title) presenceData.details = title;
if (author) presenceData.state = author;
Expand Down

0 comments on commit a1e1a37

Please sign in to comment.