Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/string-coerce-runtime";
export function formatMatrixErrorMessage(err: unknown): string {
return formatErrorMessage(err);
}
export function formatMatrixErrorReason(err: unknown): string {
return normalizeLowercaseStringOrEmpty(formatMatrixErrorMessage(err));
}
export function isMatrixNotFoundError(err: unknown): boolean {
const errObj = err as { statusCode?: number; body?: { errcode?: string } };
if (errObj?.statusCode === 404 || errObj?.body?.errcode === "M_NOT_FOUND") {
return true;
}
const message = formatMatrixErrorReason(err);
return (
message.includes("m_not_found") || message.includes("[404]") || message.includes("not found")
);
}
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet am 2026-04-27)
¤
*© Formatika GbR, Deutschland