summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-02-18 12:52:32 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-02-18 12:52:32 +1100
commitdb10c1d387ed33455a51c7f6eeae94cc1519b366 (patch)
tree2c232735df593a91a4220a7fa71114d389145526
parentadd support for desktop/web (diff)
downloadserver-db10c1d387ed33455a51c7f6eeae94cc1519b366.tar.xz
Update default avatar colour scheme and fix ordering
-rw-r--r--assets/public/1f0bfc0865d324c2587920a7d80c609b.pngbin4397 -> 4380 bytes
-rw-r--r--assets/public/3c6ccb83716d1e4fb91d3082f6b21d77.pngbin4276 -> 4511 bytes
-rw-r--r--assets/public/4c1b599b1ef5b9f1874fdb9933f3e03b.pngbin0 -> 4251 bytes
-rw-r--r--assets/public/6f26ddd1bf59740c536d2274bb834a05.pngbin2855 -> 4494 bytes
-rw-r--r--assets/public/7c8f476123d28d103efe381543274c25.pngbin2831 -> 4657 bytes
-rw-r--r--assets/public/c09a43a372ba81e3018c3151d4ed4773.pngbin4544 -> 4158 bytes
-rw-r--r--src/cdn/routes/embed.ts11
7 files changed, 6 insertions, 5 deletions
diff --git a/assets/public/1f0bfc0865d324c2587920a7d80c609b.png b/assets/public/1f0bfc0865d324c2587920a7d80c609b.png
index 61b3f9cf..9b92bd2f 100644
--- a/assets/public/1f0bfc0865d324c2587920a7d80c609b.png
+++ b/assets/public/1f0bfc0865d324c2587920a7d80c609b.png
Binary files differdiff --git a/assets/public/3c6ccb83716d1e4fb91d3082f6b21d77.png b/assets/public/3c6ccb83716d1e4fb91d3082f6b21d77.png
index 3cc5589c..62c599a7 100644
--- a/assets/public/3c6ccb83716d1e4fb91d3082f6b21d77.png
+++ b/assets/public/3c6ccb83716d1e4fb91d3082f6b21d77.png
Binary files differdiff --git a/assets/public/4c1b599b1ef5b9f1874fdb9933f3e03b.png b/assets/public/4c1b599b1ef5b9f1874fdb9933f3e03b.png
new file mode 100644
index 00000000..bd7afef2
--- /dev/null
+++ b/assets/public/4c1b599b1ef5b9f1874fdb9933f3e03b.png
Binary files differdiff --git a/assets/public/6f26ddd1bf59740c536d2274bb834a05.png b/assets/public/6f26ddd1bf59740c536d2274bb834a05.png
index bcf0c183..9f137906 100644
--- a/assets/public/6f26ddd1bf59740c536d2274bb834a05.png
+++ b/assets/public/6f26ddd1bf59740c536d2274bb834a05.png
Binary files differdiff --git a/assets/public/7c8f476123d28d103efe381543274c25.png b/assets/public/7c8f476123d28d103efe381543274c25.png
index 3fadcedf..3e8eeae9 100644
--- a/assets/public/7c8f476123d28d103efe381543274c25.png
+++ b/assets/public/7c8f476123d28d103efe381543274c25.png
Binary files differdiff --git a/assets/public/c09a43a372ba81e3018c3151d4ed4773.png b/assets/public/c09a43a372ba81e3018c3151d4ed4773.png
index 8caebf90..67ee7bbd 100644
--- a/assets/public/c09a43a372ba81e3018c3151d4ed4773.png
+++ b/assets/public/c09a43a372ba81e3018c3151d4ed4773.png
Binary files differdiff --git a/src/cdn/routes/embed.ts b/src/cdn/routes/embed.ts
index 5e5ff76d..fd13d215 100644
--- a/src/cdn/routes/embed.ts
+++ b/src/cdn/routes/embed.ts
@@ -23,11 +23,12 @@ import { HTTPError } from "lambert-server";
 import { join } from "path";
 
 const defaultAvatarHashMap = new Map([
-	["1", "1f0bfc0865d324c2587920a7d80c609b"],
-	["2", "c09a43a372ba81e3018c3151d4ed4773"],
-	["3", "7c8f476123d28d103efe381543274c25"],
-	["4", "6f26ddd1bf59740c536d2274bb834a05"],
-	["5", "3c6ccb83716d1e4fb91d3082f6b21d77"],
+	["0", "1f0bfc0865d324c2587920a7d80c609b"],
+	["1", "c09a43a372ba81e3018c3151d4ed4773"],
+	["2", "7c8f476123d28d103efe381543274c25"],
+	["3", "6f26ddd1bf59740c536d2274bb834a05"],
+	["4", "3c6ccb83716d1e4fb91d3082f6b21d77"],
+	["5", "4c1b599b1ef5b9f1874fdb9933f3e03b"],
 ]);
 
 const router = Router();