diff --git a/js/ui.js b/js/ui.js index 3e30b3b..bc7f482 100644 --- a/js/ui.js +++ b/js/ui.js @@ -3883,7 +3883,7 @@ export class UIRenderer { async function fetchAotyWorker(album, artist) { try { const response = await fetch( - `https://aoty-critics.samidy.workers.dev/?artist=${artist}&album=${album}` + `https://aoty-api.hnh65483.workers.dev/?artist=${artist}&album=${album}` ); const data = await response.json(); @@ -3907,7 +3907,9 @@ export class UIRenderer { reviewdiv.style.paddingBottom = '1rem'; reviewdiv.style.borderBottom = '1px solid var(--border)'; - const publication = decodeHtml(review.publication || review.source || 'Unknown Publication'); + const publication = decodeHtml( + review.publication || review.source || 'Unknown Publication' + ); const author = decodeHtml(review.author || ''); const quote = decodeHtml(review.text || review.quote || 'No review text available.');