Generate public urls for attachments in message

This commit is contained in:
Cadence Ember 2024-09-14 01:58:17 +12:00
commit adf07ad736
2 changed files with 9 additions and 1 deletions

View file

@ -121,7 +121,7 @@ function timestampToSnowflakeInexact(timestamp) {
/** @param {string} url */
function getPublicUrlForCdn(url) {
const match = url.match(`https://cdn.discordapp.com/attachments/([0-9]+)/([0-9]+)/([-A-Za-z0-9_.,]+)`)
const match = url.match(/https:\/\/cdn.discordapp.com\/attachments\/([0-9]+)\/([0-9]+)\/([-A-Za-z0-9_.,]+)/)
if (!match) return url
return `${reg.ooye.bridge_origin}/download/discordcdn/${match[1]}/${match[2]}/${match[3]}`
}