mirror of
https://github.com/p-stream/providers.git
synced 2026-03-11 17:55:36 +00:00
Fixed if condition
This commit is contained in:
parent
bbb39a3aa7
commit
bbd88fd966
1 changed files with 4 additions and 2 deletions
|
|
@ -2,10 +2,12 @@ import { CommonMedia } from '@/entrypoint/utils/media';
|
|||
|
||||
export function normalizeTitle(title: string): string {
|
||||
let titleTrimmed = title.trim().toLowerCase();
|
||||
if (((titleTrimmed !== "the movie" && titleTrimmed.endsWith("the movie")) ||
|
||||
(titleTrimmed !== "the series" && titleTrimmed.endsWith("the series")))) {
|
||||
if (((titleTrimmed !== "the movie" && titleTrimmed.endsWith("the movie")))) {
|
||||
titleTrimmed = titleTrimmed.replace("the movie", "");
|
||||
}
|
||||
if (((titleTrimmed !== "the series" && titleTrimmed.endsWith("the series")))) {
|
||||
titleTrimmed = titleTrimmed.replace("the series", "");
|
||||
}
|
||||
return titleTrimmed
|
||||
.replace(/['":]/g, "")
|
||||
.replace(/[^a-zA-Z0-9]+/g, "_");
|
||||
|
|
|
|||
Loading…
Reference in a new issue