Fix vidmoly & add it to README

This commit is contained in:
2024-05-20 15:38:06 +02:00
parent 64cf565da3
commit c57cd03407
2 changed files with 3 additions and 1 deletions

View File

@ -199,9 +199,10 @@ export const Vidmoly: Match = {
name: 'Vidmoly',
id: 'vidmoly',
domains: ['vidmoly.me', 'vidmoly.to'],
regex: /(?<=file:").+\.m3u8(?=")/gm,
regex: /(?<=file:").+\.m3u8/gm,
match: async (match: RegExpMatchArray) => {
alert('a');
return match[0];
}
};