Skip to content

Commit

Permalink
fix: recognize older streamable links
Browse files Browse the repository at this point in the history
  • Loading branch information
KwiatekMiki committed Oct 22, 2024
1 parent c330172 commit 9be05fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/processing/service-patterns.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const testers = {
|| pattern.shortLink?.length <= 16,

"streamable": pattern =>
pattern.id?.length === 6,
pattern.id?.length <= 6,

"tiktok": pattern =>
pattern.postId?.length <= 21 || pattern.shortLink?.length <= 13,
Expand Down

0 comments on commit 9be05fa

Please sign in to comment.