Compare commits

...

2 commits

Author SHA1 Message Date
root
effd78e78f Merge branch 'main' of https://github.com/govdbot/govd
All checks were successful
Build and deploy / build-and-push-image (push) Successful in 8m52s
2025-04-23 18:00:02 +00:00
stefanodvx
a24d9348bf instagram: fixes url pattern 2025-04-23 19:12:38 +02:00

View file

@ -17,7 +17,7 @@ var Extractor = &models.Extractor{
CodeName: "instagram",
Type: enums.ExtractorTypeSingle,
Category: enums.ExtractorCategorySocial,
URLPattern: regexp.MustCompile(`https:\/\/(www\.)?instagram\.com\/(reel|p|tv)\/(?P<id>[a-zA-Z0-9_-]+)`),
URLPattern: regexp.MustCompile(`https:\/\/(www\.)?instagram\.com\/(reels?|p|tv)\/(?P<id>[a-zA-Z0-9_-]+)`),
Host: instagramHost,
IsRedirect: false,