Same fix for embeddings and chants, although probably not relevant

This commit is contained in:
DominikDoom
2024-01-11 15:40:14 +01:00
parent cde90c13c4
commit 7778142520
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ async function load() {
function sanitize(tagType, text) {
if (tagType === ResultType.embedding) {
return text.replace(/^.*?: /g, "");
return text;
}
return null;
}