From 37c167fc3812c44feb445bf56047c814ab358df9 Mon Sep 17 00:00:00 2001 From: dylan Date: Sun, 28 Dec 2025 20:53:09 +0000 Subject: [PATCH] updated trakt episode and movie image URLs to use poster instead of thumb --- utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.js b/utils.js index 4d02a71..5a1dfb2 100644 --- a/utils.js +++ b/utils.js @@ -293,7 +293,7 @@ export async function getTraktEpisode(config) { const title = entry.querySelector('title').textContent const link = entry.querySelector('link').getAttribute('href') const image = showImage - ? `https://widgets.trakt.tv/users/${traktId}/watched/thumb@2x.jpg?type=episode&image_only=1` + ? `https://widgets.trakt.tv/users/${traktId}/watched/poster@2x.jpg?type=episode&image_only=1` : null return { text: title, url: link, image } } @@ -311,7 +311,7 @@ export async function getTraktMovie(config) { const title = entry.querySelector('title').textContent const link = entry.querySelector('link').getAttribute('href') const image = showImage - ? `https://widgets.trakt.tv/users/${traktId}/watched/thumb@2x.jpg?type=movie&image_only=1` + ? `https://widgets.trakt.tv/users/${traktId}/watched/poster@2x.jpg?type=movie&image_only=1` : null return { text: title, url: link, image } }