chore: 🎨 format

This commit is contained in:
ThatOneCalculator 2023-09-20 21:20:22 -07:00
parent 3836e052bb
commit f81baa373c
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
3 changed files with 13 additions and 14 deletions

View File

@ -199,7 +199,8 @@ export const NoteRepository = db.getRepository(Note).extend({
host,
);
const lang = detectLanguage_(`${note.cw ?? ''}\n${note.text ?? ''}`) ?? "unknown"
const lang =
detectLanguage_(`${note.cw ?? ""}\n${note.text ?? ""}`) ?? "unknown";
const reactionEmoji = await populateEmojis(reactionEmojiNames, host);
const packed: Packed<"Note"> = await awaitAll({
id: note.id,

View File

@ -12,11 +12,7 @@ export default async (actor: CacheableRemoteUser, activity: ILike) => {
await extractEmojis(activity.tag || [], actor.host).catch(() => null);
return await create(
actor,
note,
activity.content || activity.name,
)
return await create(actor, note, activity.content || activity.name)
.catch((e) => {
if (e.id === "51c42bb4-931a-456b-bff7-e5a8a70dd298") {
return "skip: already reacted";

View File

@ -24,14 +24,16 @@ export function openHelpMenu_(ev: MouseEvent) {
icon: "ph-lightbulb ph-bold ph-lg",
to: "/about-firefish",
},
instance.tosUrl ? {
type: "button",
text: i18n.ts.tos,
icon: "ph-scroll ph-bold ph-lg",
action: () => {
window.open(instance.tosUrl, "_blank");
},
} : null,
instance.tosUrl
? {
type: "button",
text: i18n.ts.tos,
icon: "ph-scroll ph-bold ph-lg",
action: () => {
window.open(instance.tosUrl, "_blank");
},
}
: null,
{
type: "button",
text: i18n.ts.apps,