music: large url fixes
This commit is contained in:
parent
ad141377e7
commit
e0b46409f9
1 changed files with 2 additions and 2 deletions
|
@ -290,7 +290,7 @@ async function enqueue({
|
|||
fields: [
|
||||
{
|
||||
name: "Title",
|
||||
value: title && title != url ? `[${title}](${url})` : url,
|
||||
value: (title && title != url ? `[${title}](${url})` : url).substring(0, 1024),
|
||||
inline: true,
|
||||
},
|
||||
{
|
||||
|
@ -336,7 +336,7 @@ async function enqueue({
|
|||
fields: [
|
||||
{
|
||||
name: "Title",
|
||||
value: title ? `[${title}](${url})` : url,
|
||||
value: (title ? `[${title}](${url})` : url).substring(0, 1024),
|
||||
inline: true,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue