Automaticly fixable eslint issues, mostly 3 -> 2 space indentation

This commit is contained in:
2022-08-19 10:41:44 +02:00
parent 11fb803838
commit 2aace85418
62 changed files with 498 additions and 375 deletions

View File

@@ -5,10 +5,10 @@ function translateAdded(date_string) {
}
function convertPlexToSeasoned(plex) {
const title = plex.title;
const year = plex.year;
const type = plex.type;
const summary = plex.summary;
const { title } = plex;
const { year } = plex;
const { type } = plex;
const { summary } = plex;
const poster_path = plex.thumb;
const background_path = plex.art;
const added = translateAdded(plex.addedAt);