@ -24,7 +24,7 @@ const invalidChars = ['/', '\\', '>', '<', ':', '*', '|', '"', '\'', '?', '\0'];
const replaceInvalid = (str) => {
var cache = str;
invalidChars.forEach(ch => {
cache = cache.replace(ch, "#");
cache = cache.replaceAll(ch, "#");
});
return cache;
}
The note is not visible to the blocked user.