prettier formatting

This commit is contained in:
stratuma 2024-06-21 22:16:29 +02:00
parent 3eb53f690e
commit be97265988
5 changed files with 6 additions and 13 deletions

View File

@ -6,7 +6,6 @@ import type { CrunchyAnimeFetch, CrunchyEpisodeFetch, CrunchyEpisodesFetch, Crun
export async function searchCrunchy(q: string) {
var isProxyActive: boolean | undefined
var selectedLanguage: string | undefined
;(window as any).myAPI.getProxyActive().then((result: boolean) => {
isProxyActive = result
})
@ -129,7 +128,6 @@ export async function searchCrunchy(q: string) {
export async function getCRSeries(q: string) {
var isProxyActive: boolean | undefined
var selectedLanguage: string | undefined
;(window as any).myAPI.getProxyActive().then((result: boolean) => {
isProxyActive = result
})
@ -224,7 +222,6 @@ export async function getCRSeries(q: string) {
export async function getCREpisodeSeriesID(q: string) {
var isProxyActive: boolean | undefined
var selectedLanguage: string | undefined
;(window as any).myAPI.getProxyActive().then((result: boolean) => {
isProxyActive = result
})

View File

@ -2,9 +2,7 @@ import { crunchyLogin } from './Account'
import type { CrunchyEpisodesFetch } from './Types'
export async function listEpisodeCrunchy(q: string, geo: string | undefined) {
var selectedLanguage: string | undefined
;(window as any).myAPI.getDefaultCrunchyrollLanguage().then((result: string) => {
selectedLanguage = result
})

View File

@ -3,9 +3,7 @@ import { getProxies } from './Proxy'
import type { CrunchySeasonsFetch } from './Types'
export async function listSeasonCrunchy(q: string, geo: string | undefined) {
var selectedLanguage: string | undefined
;(window as any).myAPI.getDefaultCrunchyrollLanguage().then((result: string) => {
selectedLanguage = result
})

View File

@ -276,7 +276,7 @@ async function checkPlaylists() {
try {
const eps = await Playlist.findAll({ where: { status: 'waiting' } })
const maxd = await settings.get('DefaultMaxDownloads') as number
const maxd = (await settings.get('DefaultMaxDownloads')) as number
if (maxd !== undefined && maxd !== null) {
maxDownloading = maxd

View File

@ -45,19 +45,19 @@ export async function createChapterFile(rawchapters: VideoMetadata, dir: string,
chapters.push(``)
if (rawchapters.intro && rawchapters.intro.type && rawchapters.intro.start && rawchapters.intro.end) {
chapters.push(...await createChapter(rawchapters.intro, format, 'Intro'));
chapters.push(...(await createChapter(rawchapters.intro, format, 'Intro')))
}
if (rawchapters.credits && rawchapters.credits.type && rawchapters.credits.start && rawchapters.credits.end) {
chapters.push(...await createChapter(rawchapters.credits, format, 'Credits'));
chapters.push(...(await createChapter(rawchapters.credits, format, 'Credits')))
}
if (rawchapters.preview && rawchapters.preview.type && rawchapters.preview.start && rawchapters.preview.end) {
chapters.push(...await createChapter(rawchapters.preview, format, 'Preview'));
chapters.push(...(await createChapter(rawchapters.preview, format, 'Preview')))
}
if (rawchapters.recap && rawchapters.recap.type && rawchapters.recap.start && rawchapters.recap.end) {
chapters.push(...await createChapter(rawchapters.recap, format, 'Recap'));
chapters.push(...(await createChapter(rawchapters.recap, format, 'Recap')))
}
try {