From 6e3ae8a04e8d031b8196f2b02f1a6f610767e48e Mon Sep 17 00:00:00 2001 From: Samidy Date: Mon, 6 Apr 2026 22:49:15 +0300 Subject: [PATCH] update workers link so no more limits --- js/ui.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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.');