summary refs log tree commit diff
path: root/cdn/src
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-18 19:20:28 +0200
committerGitHub <noreply@github.com>2021-09-18 19:20:28 +0200
commit03afedc627c5de785ae21ead6b9d8b0e5c3eb1ab (patch)
tree6b1de72dbf7af0c4bdcf23db8c9f45aab8bef0d0 /cdn/src
parentMerge pull request #374 from TheArcaneBrony/dummy-connections-endpoint (diff)
parentMerge branch 'fosscord:master' into fix-dm (diff)
downloadserver-03afedc627c5de785ae21ead6b9d8b0e5c3eb1ab.tar.xz
Merge pull request #369 from AlTech98/fix-dm
Diffstat (limited to 'cdn/src')
-rw-r--r--cdn/src/Server.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cdn/src/Server.ts b/cdn/src/Server.ts

index 5c4a8ae5..590eda6f 100644 --- a/cdn/src/Server.ts +++ b/cdn/src/Server.ts
@@ -58,6 +58,9 @@ export class CDNServer extends Server { this.app.use("/team-icons/", avatarsRoute); this.log("verbose", "[Server] Route /team-icons registered"); + this.app.use("/channel-icons/", avatarsRoute); + this.log("verbose", "[Server] Route /channel-icons registered"); + return super.start(); }