From 6ee4f58488ac7435d51db1a5c777f2b10c3ff0ab Mon Sep 17 00:00:00 2001 From: dylan Date: Thu, 25 Dec 2025 18:23:49 +0000 Subject: [PATCH] updated getTraktEpisodeAndMovie to format output with line breaks --- utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.js b/utils.js index 7e4751f..c9fd645 100644 --- a/utils.js +++ b/utils.js @@ -133,7 +133,7 @@ export async function getTraktMovie(username, showImage = true) { export async function getTraktEpisodeAndMovie(username, id, showImage = true) { const episode = await getTraktEpisode(username, id, showImage) const movie = await getTraktMovie(username, showImage) - return `${episode} and ${movie}` + return `${episode}
and
${movie}` } export async function getReadingBooklogr(booklogrUrl, booklogrUser) {