mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-01 16:37:39 +01:00
👌 IMPROVE: Syntax for lint
This commit is contained in:
parent
a442baa5e0
commit
cad7f46bb1
1 changed files with 3 additions and 2 deletions
|
@ -102,7 +102,7 @@ export const superStreamScraper: MWMediaProvider = {
|
|||
media: MWPortableMedia,
|
||||
): Promise<MWProviderMediaResult> {
|
||||
let apiQuery: any;
|
||||
if (media.mediaType == MWMediaType.MOVIE) {
|
||||
if (media.mediaType === MWMediaType.MOVIE) {
|
||||
apiQuery = {
|
||||
module: "TV_detail_1",
|
||||
display_all: "1",
|
||||
|
@ -153,7 +153,8 @@ export const superStreamScraper: MWMediaProvider = {
|
|||
|
||||
if (query.type === MWMediaType.MOVIE) {
|
||||
return movieResults;
|
||||
} else if (query.type === MWMediaType.SERIES) {
|
||||
}
|
||||
if (query.type === MWMediaType.SERIES) {
|
||||
return seriesResults;
|
||||
}
|
||||
return [];
|
||||
|
|
Loading…
Reference in a new issue