Skip to content

Commit

Permalink
Prevent matching with more than one TikTok extractor
Browse files Browse the repository at this point in the history
  • Loading branch information
CasualYT31 committed Dec 23, 2024
1 parent c6effba commit 1c12edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/tiktok.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class TiktokUserExtractor(TiktokExtractor):
"""Extract a TikTok user's profile"""

subcategory = "user"
pattern = USER_PATTERN
pattern = USER_PATTERN + r"$"
example = "https://www.tiktok.com/@chillezy"

def urls(self):
Expand Down

0 comments on commit 1c12edf

Please sign in to comment.