From a24d9348bf54f4431382c28088cff45ba64f26cf Mon Sep 17 00:00:00 2001 From: stefanodvx <69367859+stefanodvx@users.noreply.github.com> Date: Wed, 23 Apr 2025 19:12:38 +0200 Subject: [PATCH] instagram: fixes url pattern --- ext/instagram/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/instagram/main.go b/ext/instagram/main.go index 4a9338a..810c035 100644 --- a/ext/instagram/main.go +++ b/ext/instagram/main.go @@ -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[a-zA-Z0-9_-]+)`), + URLPattern: regexp.MustCompile(`https:\/\/(www\.)?instagram\.com\/(reels?|p|tv)\/(?P[a-zA-Z0-9_-]+)`), Host: instagramHost, IsRedirect: false,