discord_embed: Add cdn.discordapp.com support
continuous-integration/appveyor/branch AppVeyor build succeeded Details

master discord_embed_v1.0.10
Jonatan Nilsson 2022-11-30 13:54:17 +00:00
parent 8badc915cd
commit 6faf71ba18
2 changed files with 6 additions and 2 deletions

View File

@ -38,7 +38,11 @@ export default class ServeHandler extends Parent {
let res = await ctx.db.safeCallProc('discord_embed.link_get', [id - 3843])
if (res.first.length) {
ctx.state.video = res.first[0].video_link
videoLink = this.frontend + '/video/' + ctx.url.slice(1) + '.webm'
if (ctx.state.video.startsWith('https://cdn.discordapp.com')) {
videoLink = ctx.state.video.replace('https://cdn.discordapp.com', 'https://discordproxy.nfp.is')
} else {
videoLink = this.frontend + '/video/' + ctx.url.slice(1) + '.webm'
}
imageLink = res.first[0].image_link
} else {
ctx.status = 404

View File

@ -1,6 +1,6 @@
{
"name": "discord_embed",
"version": "1.0.9",
"version": "1.0.10",
"port": 4120,
"description": "AV1 discord server embed helper",
"main": "index.js",