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) {