diff options
author | AlTech98 <altech123159@gmail.com> | 2021-09-17 18:29:02 +0200 |
---|---|---|
committer | AlTech98 <altech123159@gmail.com> | 2021-09-17 18:29:02 +0200 |
commit | 6123f359b0b58e72da70d0f0d89cc7714d54f8b6 (patch) | |
tree | db64b13077038f94a2d32979641229d25f7871f8 /cdn | |
parent | Merge branch 'fosscord:master' into fix-dm (diff) | |
download | server-6123f359b0b58e72da70d0f0d89cc7714d54f8b6.tar.xz |
Fix icon, owner_id change and channel deletion for group DMs
Diffstat (limited to 'cdn')
-rw-r--r-- | cdn/src/Server.ts | 3 |
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(); } |