mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-18 06:09:58 +00:00
soundcloud: bump max artist name length to 255
This commit is contained in:
parent
987f2f76b9
commit
e06034c22f
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ export const testers = {
|
||||||
patternMatch.id?.length === 32,
|
patternMatch.id?.length === 32,
|
||||||
|
|
||||||
"soundcloud": (patternMatch) =>
|
"soundcloud": (patternMatch) =>
|
||||||
(patternMatch.author?.length <= 128 && patternMatch.song?.length <= 255)
|
(patternMatch.author?.length <= 255 && patternMatch.song?.length <= 255)
|
||||||
|| patternMatch.shortLink?.length <= 32,
|
|| patternMatch.shortLink?.length <= 32,
|
||||||
|
|
||||||
"streamable": (patternMatch) =>
|
"streamable": (patternMatch) =>
|
||||||
|
|
Loading…
Reference in a new issue