Merge pull request 'fix: check alt text on word mutes' (#10149) from naskya/calckey:fix/alt-text-mutes into develop

Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10149
This commit is contained in:
Kainoa Kanter 2023-05-18 15:08:38 +00:00
commit b5b8a7c7ef
2 changed files with 7 additions and 2 deletions

View file

@ -5,6 +5,7 @@ import type { User } from "@/models/entities/user.js";
type NoteLike = {
userId: Note["userId"];
text: Note["text"];
files: Note["files"];
cw?: Note["cw"];
};
@ -18,7 +19,9 @@ function checkWordMute(
): boolean {
if (note == null) return false;
const text = ((note.cw ?? "") + " " + (note.text ?? "")).trim();
const text = `${note.cw ?? ""} ${note.text ?? ""} ${note.files
.map((f) => f.comment ?? "")
.join(" ")}`.trim();
if (text === "") return false;
for (const mutePattern of mutedWords) {

View file

@ -10,7 +10,9 @@ function checkWordMute(
note: NoteLike,
mutedWords: Array<string | string[]>,
): Muted {
const text = ((note.cw ?? "") + " " + (note.text ?? "")).trim();
const text = `${note.cw ?? ""} ${note.text ?? ""} ${note.files
.map((f) => f.comment ?? "")
.join(" ")}`.trim();
if (text === "") return NotMuted;
let result = { muted: false, matched: [] };