Open nhomble opened 5 months ago
When creating a new note from a feed item with [ or ] in the title, the filename is not sanitized such that the note cannot be created.
[
]
I think this can be fixed by modifying
var FILE_NAME_REGEX = /["\/<>:|?]/gm;
by adding \[\]
\[\]
When creating a new note from a feed item with
[
or]
in the title, the filename is not sanitized such that the note cannot be created.I think this can be fixed by modifying
by adding
\[\]