fix: recognize older streamable links

This commit is contained in:
KwiatekMiki 2024-10-23 00:35:56 +02:00
parent c33017283d
commit 9be05faea0
No known key found for this signature in database
GPG Key ID: FA929409FF1ED9AD

View File

@ -36,7 +36,7 @@ export const testers = {
|| pattern.shortLink?.length <= 16, || pattern.shortLink?.length <= 16,
"streamable": pattern => "streamable": pattern =>
pattern.id?.length === 6, pattern.id?.length <= 6,
"tiktok": pattern => "tiktok": pattern =>
pattern.postId?.length <= 21 || pattern.shortLink?.length <= 13, pattern.postId?.length <= 21 || pattern.shortLink?.length <= 13,