Rust commit branch link-> Fix problem with spaces on links.

master
Cristiano Pires 2 years ago
parent f6da7657f7
commit fa6c44fe8b

@ -708,7 +708,7 @@ class rustCommits
.setAuthor({name:commit.Author, iconURL:commit.Avatar==''?"https://i.imgur.com/g6FSNhL.png":commit.Avatar,url:`https://commits.facepunch.com/${commit.Author.split(' ').join('')}`})
.setDescription(commit.Content)
.addFields(
{ name:`${commit.Repo}`, value:`[${commit.Repo}/${commit.Branch}](https://commits.facepunch.com/r/${commit.Repo}/${commit.Branch}/ 'Branch Link')`},
{ name:`${commit.Repo}`, value:`[${commit.Repo}/${commit.Branch}](https://commits.facepunch.com/r/${commit.Repo}/${commit.Branch.split(' ')? commit.Branch.split(' ').join('%20'):commit.Branch}/ 'Branch Link')`},
{ name: 'ID', value: commit.ID.toString() },
)
.setTimestamp()

Loading…
Cancel
Save