chore: Lint extensions folder.

This commit is contained in:
cpojer
2026-01-31 22:13:48 +09:00
parent 4f2166c503
commit 230ca789e2
221 changed files with 4006 additions and 1583 deletions
+6 -2
View File
@@ -35,7 +35,9 @@ async function deliverNextcloudTalkReply(params: {
? [payload.mediaUrl]
: [];
if (!text.trim() && mediaList.length === 0) return;
if (!text.trim() && mediaList.length === 0) {
return;
}
const mediaBlock = mediaList.length
? mediaList.map((url) => `Attachment: ${url}`).join("\n")
@@ -64,7 +66,9 @@ export async function handleNextcloudTalkInbound(params: {
const core = getNextcloudTalkRuntime();
const rawBody = message.text?.trim() ?? "";
if (!rawBody) return;
if (!rawBody) {
return;
}
const roomKind = await resolveNextcloudTalkRoomKind({
account,