1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-29 16:07:40 +01:00

Update Search.js

This commit is contained in:
mansoor-roeen-glitch 2021-09-13 23:59:49 +05:30 committed by GitHub
parent c8d799cab5
commit 91d7048243
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,13 +54,17 @@ export function SearchView() {
}
let realUrl = '';
let subtitles = []
if (type === "movie") {
const { url } = await getStreamUrl(slug, type, source);
const { url, subtitles: subs } = await getStreamUrl(slug, type, source);
if (url === '') {
return fail(`Not found: ${title}`)
}
realUrl = url;
subtitles = subs
}
setProgress(maxSteps);
@ -72,7 +76,8 @@ export function SearchView() {
episodes,
slug,
source,
year
year,
subtitles: subtitles
})
setText(`Streaming...`)
navigate("movie")