2 files changed, 4 insertions, 0 deletions
diff --git a/cdn/package-lock.json b/cdn/package-lock.json
index 7a4edd89..8a2346f4 100644
--- a/cdn/package-lock.json
+++ b/cdn/package-lock.json
@@ -48,6 +48,7 @@
}
},
"../util": {
+ "name": "@fosscord/util",
"version": "1.0.0",
"hasInstallScript": true,
"license": "GPLV3",
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();
}
|