aboutsummaryrefslogtreecommitdiff
path: root/webAO/client/fetchLists.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/client/fetchLists.ts')
-rw-r--r--webAO/client/fetchLists.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/webAO/client/fetchLists.ts b/webAO/client/fetchLists.ts
index 2f2fd59..4e32abc 100644
--- a/webAO/client/fetchLists.ts
+++ b/webAO/client/fetchLists.ts
@@ -62,10 +62,10 @@ export const fetchExtensions = async () => {
try {
const extensiondata = await request(`${AO_HOST}extensions.json`);
const allextensions = JSON.parse(extensiondata);
- client.charicon_extensions = allextensions.charicon_extensions || [".png", ".webp"];
- client.emote_extensions = allextensions.emote_extensions || [".gif", ".png", ".apng", ".webp", ".webp.static"];
- client.emotions_extensions = allextensions.emotions_extensions || [".png", ".webp"];
- client.background_extensions = allextensions.background_extensions || [".png", ".gif", ".webp", ".apng"];
+ client.charicon_extensions = allextensions.charicon_extensions || [".webp", ".png"];
+ client.emote_extensions = allextensions.emote_extensions || [".webp", ".png", ".apng", ".gif"];
+ client.emotions_extensions = allextensions.emotions_extensions || [".webp", ".png"];
+ client.background_extensions = allextensions.background_extensions || [".webp", ".png", ".apng", ".gif"];
console.log("charicons "+client.charicon_extensions)
console.log("emotes "+client.emote_extensions)
console.log("emotions "+client.emotions_extensions)