updated getTraktEpisodeAndMovie to format output with line breaks
This commit is contained in:
parent
5817da006f
commit
6ee4f58488
1 changed files with 1 additions and 1 deletions
2
utils.js
2
utils.js
|
|
@ -133,7 +133,7 @@ export async function getTraktMovie(username, showImage = true) {
|
||||||
export async function getTraktEpisodeAndMovie(username, id, showImage = true) {
|
export async function getTraktEpisodeAndMovie(username, id, showImage = true) {
|
||||||
const episode = await getTraktEpisode(username, id, showImage)
|
const episode = await getTraktEpisode(username, id, showImage)
|
||||||
const movie = await getTraktMovie(username, showImage)
|
const movie = await getTraktMovie(username, showImage)
|
||||||
return `${episode} and ${movie}`
|
return `${episode} <br>and<br> ${movie}`
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getReadingBooklogr(booklogrUrl, booklogrUser) {
|
export async function getReadingBooklogr(booklogrUrl, booklogrUser) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue