Merge pull request 'fix: TypeError in word mutes' (#10168) from naskya/calckey:fix/alt-text-mutes-undefined into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10168
This commit is contained in:
commit
7dfb4ff3d4
|
@ -5,7 +5,7 @@ import type { User } from "@/models/entities/user.js";
|
|||
type NoteLike = {
|
||||
userId: Note["userId"];
|
||||
text: Note["text"];
|
||||
files: Note["files"];
|
||||
files?: Note["files"];
|
||||
cw?: Note["cw"];
|
||||
};
|
||||
|
||||
|
@ -19,9 +19,11 @@ function checkWordMute(
|
|||
): boolean {
|
||||
if (note == null) return false;
|
||||
|
||||
const text = `${note.cw ?? ""} ${note.text ?? ""} ${note.files
|
||||
.map((f) => f.comment ?? "")
|
||||
.join(" ")}`.trim();
|
||||
let text = `${note.cw ?? ""} ${note.text ?? ""}`;
|
||||
if (note.files != null)
|
||||
text += ` ${note.files.map((f) => f.comment ?? "").join(" ")}`;
|
||||
text = text.trim();
|
||||
|
||||
if (text === "") return false;
|
||||
|
||||
for (const mutePattern of mutedWords) {
|
||||
|
|
|
@ -10,9 +10,11 @@ function checkWordMute(
|
|||
note: NoteLike,
|
||||
mutedWords: Array<string | string[]>,
|
||||
): Muted {
|
||||
const text = `${note.cw ?? ""} ${note.text ?? ""} ${note.files
|
||||
.map((f) => f.comment ?? "")
|
||||
.join(" ")}`.trim();
|
||||
let text = `${note.cw ?? ""} ${note.text ?? ""}`;
|
||||
if (note.files != null)
|
||||
text += ` ${note.files.map((f) => f.comment ?? "").join(" ")}`;
|
||||
text = text.trim();
|
||||
|
||||
if (text === "") return NotMuted;
|
||||
|
||||
let result = { muted: false, matched: [] };
|
||||
|
|
Loading…
Reference in New Issue