Fix wildcards being cut off after colon

Fixes #267
This commit is contained in:
DominikDoom
2024-01-11 15:38:33 +01:00
parent 231b121fe0
commit cde90c13c4

View File

@@ -153,7 +153,7 @@ function sanitize(tagType, text) {
if (tagType === ResultType.wildcardFile || tagType === ResultType.yamlWildcard) {
return `__${text}__`;
} else if (tagType === ResultType.wildcardTag) {
return text.replace(/^.*?: /g, "");
return text;
}
return null;
}