Fix prettier errors

This commit is contained in:
teddyHV11
2024-04-11 04:18:38 +03:00
parent 6b038a288c
commit 8796b39a63
2 changed files with 32 additions and 33 deletions

View File

@@ -1,31 +1,30 @@
import { Caption } from "@/providers/captions";
import { Subtitle } from "./types";
import { Caption, removeDuplicatedLanguages } from '@/providers/captions';
import { removeDuplicatedLanguages } from "@/providers/captions";
import { Subtitle } from './types';
export async function getCaptions(data: Subtitle[]) {
let captions: Caption[] = [];
for (const subtitle of data) {
let language = '';
let captions: Caption[] = [];
for (const subtitle of data) {
let language = '';
if (subtitle.name.includes('Рус')) {
language = 'ru';
} else if (subtitle.name.includes('Укр')) {
language = 'uk';
} else if (subtitle.name.includes('Eng')) {
language = 'en';
} else {
continue;
}
captions.push({
id: subtitle.url,
url: subtitle.url,
language,
type: 'vtt',
hasCorsRestrictions: false,
});
if (subtitle.name.includes('Рус')) {
language = 'ru';
} else if (subtitle.name.includes('Укр')) {
language = 'uk';
} else if (subtitle.name.includes('Eng')) {
language = 'en';
} else {
continue;
}
captions = removeDuplicatedLanguages(captions);
return(captions)
}
captions.push({
id: subtitle.url,
url: subtitle.url,
language,
type: 'vtt',
hasCorsRestrictions: false,
});
}
captions = removeDuplicatedLanguages(captions);
return captions;
}

View File

@@ -1,10 +1,10 @@
import { flags } from '@/entrypoint/utils/targets';
import { makeSourcerer } from '@/providers/base';
import { Caption, removeDuplicatedLanguages } from '@/providers/captions';
import { Caption } from '@/providers/captions';
import { NotFoundError } from '@/utils/errors';
import { getCaptions } from './captions';
import { Season, Subtitle } from './types';
import { getCaptions } from './captions';
import { Season } from './types';
const insertUnitBase = 'https://api.insertunit.ws/';
@@ -39,11 +39,11 @@ export const insertunitScraper = makeSourcerer({
);
if (!currentEpisode?.hls) throw new NotFoundError('No result found');
let captions: Caption[] = []
let captions: Caption[] = [];
if (currentEpisode.cc != null) {
captions = await getCaptions(currentEpisode.cc)
captions = await getCaptions(currentEpisode.cc);
}
ctx.progress(95);
@@ -82,7 +82,7 @@ export const insertunitScraper = makeSourcerer({
if (subtitleJSONData != null && subtitleJSONData[1] != null) {
const subtitleData = JSON.parse(subtitleJSONData[1]);
captions = await getCaptions(subtitleData)
captions = await getCaptions(subtitleData);
}
ctx.progress(90);