diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-20 21:49:42 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-20 21:49:42 +0200 |
commit | 16a3d1b334315099a83c64dfd5d3c2fa9386e6fb (patch) | |
tree | 114bdb80b0a95ee4c2eec35bb3fdc044adbfe721 /cdn | |
parent | :sparkles: route middleware test option (diff) | |
parent | :bug: fix relationships (diff) | |
download | server-16a3d1b334315099a83c64dfd5d3c2fa9386e6fb.tar.xz |
Merge branch 'master' into unittests
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(); } |