summary refs log tree commit diff
path: root/cdn/src/Server.ts
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
commit5d0acf502b347f17e17ae8631bfa97cc33093392 (patch)
treea998946ffc8b2a75d711fc2243e506202d842b1d /cdn/src/Server.ts
parentMerge pull request #374 from TheArcaneBrony/dummy-connections-endpoint (diff)
parentMerge branch 'fosscord:master' into fix-dm (diff)
downloadserver-5d0acf502b347f17e17ae8631bfa97cc33093392.tar.xz
Merge pull request #369 from AlTech98/fix-dm
Diffstat (limited to 'cdn/src/Server.ts')
-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(); }