From 58246dfcdb16f5f28a0083f2572c000d1c8f4510 Mon Sep 17 00:00:00 2001 From: wukko Date: Fri, 29 Dec 2023 08:19:15 +0600 Subject: [PATCH] soundcloud: accommodate for longer usernames closes #293 --- src/modules/processing/servicesPatternTesters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/processing/servicesPatternTesters.js b/src/modules/processing/servicesPatternTesters.js index 86d1eda4..5e20d929 100644 --- a/src/modules/processing/servicesPatternTesters.js +++ b/src/modules/processing/servicesPatternTesters.js @@ -16,7 +16,7 @@ export const testers = { patternMatch.id?.length === 32, "soundcloud": (patternMatch) => - (patternMatch.author?.length <= 25 && patternMatch.song?.length <= 255) + (patternMatch.author?.length <= 128 && patternMatch.song?.length <= 255) || patternMatch.shortLink?.length <= 32, "streamable": (patternMatch) =>