Skip to content

Commit b00c697

Browse files
committed
Fix emoji import fail when shortcodes are in use
Fix #102
1 parent 079202b commit b00c697

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,12 @@ To be released.
1313
- Fixed a bug where Hollo posts had included unintended extra line breaks
1414
on Iceshrimp. [[#88]]
1515

16+
- Fixed a bug where importing emojis from remote servers had failed when
17+
some shortcodes were already in use. [[102]]
18+
1619
[#88]: https://github.com/fedify-dev/hollo/issues/88
1720
[#98]: https://github.com/fedify-dev/hollo/issues/98
21+
[#102]: https://github.com/fedify-dev/hollo/issues/102
1822

1923

2024
Version 0.4.4

src/pages/emojis.tsx

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { getLogger } from "@logtape/logtape";
12
import { desc, inArray, isNotNull, ne } from "drizzle-orm";
23
import { Hono } from "hono";
34
import mime from "mime";
@@ -7,6 +8,8 @@ import { loginRequired } from "../login";
78
import { accounts, customEmojis, posts, reactions } from "../schema";
89
import { disk, getAssetUrl } from "../storage";
910

11+
const logger = getLogger(["hollo", "pages", "emojis"]);
12+
1013
const emojis = new Hono();
1114

1215
emojis.use(loginRequired);
@@ -368,13 +371,16 @@ emojis.post("/import", async (c) => {
368371
? (form.get("new")?.toString() ?? "")
369372
: null;
370373
const imports = form.getAll("import").map((i) => JSON.parse(i.toString()));
371-
await db.insert(customEmojis).values(
372-
imports.map(({ shortcode, url }) => ({
373-
category,
374-
shortcode,
375-
url,
376-
})),
377-
);
374+
for (const { shortcode, url } of imports) {
375+
try {
376+
await db.insert(customEmojis).values({ category, shortcode, url });
377+
} catch (error) {
378+
logger.error(
379+
"Failed to import emoji {shortcode} to {category}: {error}",
380+
{ category, shortcode, error },
381+
);
382+
}
383+
}
378384
return c.redirect("/emojis");
379385
});
380386

0 commit comments

Comments
 (0)