mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
fix: encode file links in getEpisodes and getMeta for proper URL handling
This commit is contained in:
@@ -34,7 +34,7 @@ export const getEpisodes = async function ({
|
||||
fileName.includes(".avi") ||
|
||||
fileName.includes(".mov")
|
||||
) {
|
||||
const fullLink = url + fileLink;
|
||||
const fullLink = encodeURIComponent(fileLink);
|
||||
|
||||
// Try to extract episode information from filename
|
||||
let episodeTitle = fileName;
|
||||
|
||||
Reference in New Issue
Block a user