mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 15:41:45 +00:00
refactor: update text track types and clean up imports across multiple stream providers
This commit is contained in:
@@ -17,7 +17,7 @@ export const getEpisodes = async function ({
|
||||
const episodes: EpisodeLink[] = [];
|
||||
container.find("h4").each((index, element) => {
|
||||
const el = $(element);
|
||||
const title = el.text().replaceAll("-", "").replaceAll(":", "");
|
||||
const title = el.text().replace(/-/g, "").replace(/:/g, "");
|
||||
const link = el
|
||||
.next("p")
|
||||
.find(
|
||||
|
||||
Reference in New Issue
Block a user