updated getTraktEpisodeAndMovie to format output with line breaks

This commit is contained in:
dylan 2025-12-25 18:23:49 +00:00
parent 5817da006f
commit 6ee4f58488

View file

@ -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} <br>and<br> ${movie}`
}
export async function getReadingBooklogr(booklogrUrl, booklogrUser) {