mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
fix typo 'cause I can't type
This commit is contained in:
parent
4d51de3bd1
commit
0d249a3e27
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ export interface DetailedMeta {
|
|||
tmdbId?: string;
|
||||
}
|
||||
|
||||
export function fromatTMDBMetaResult(
|
||||
export function formatTMDBMetaResult(
|
||||
details: TMDBShowData | TMDBMovieData,
|
||||
type: MWMediaType
|
||||
): TMDBMediaResult | undefined {
|
||||
|
@ -114,7 +114,7 @@ export async function getMetaFromId(
|
|||
}
|
||||
}
|
||||
|
||||
const tmdbmeta = fromatTMDBMetaResult(details, type);
|
||||
const tmdbmeta = formatTMDBMetaResult(details, type);
|
||||
if (!tmdbmeta) return null;
|
||||
const meta = formatTMDBMeta(tmdbmeta, seasonData);
|
||||
if (!meta) return null;
|
||||
|
|
Loading…
Reference in a new issue