Skip to content

Commit

Permalink
add ? and * (#2318)
Browse files Browse the repository at this point in the history
  • Loading branch information
hockerschwan authored Jun 15, 2022
1 parent c2c5555 commit c12d64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/store/modules/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ const actions = {
if (platform === 'win32') {
// https://www.boost.org/doc/libs/1_78_0/libs/filesystem/doc/portability_guide.htm
// https://stackoverflow.com/questions/1976007/
const noForbiddenChars = ['<', '>', ':', '"', '/', '|'].every(char => {
const noForbiddenChars = ['<', '>', ':', '"', '/', '|', '?', '*'].every(char => {
return parsedString.indexOf(char) === -1
})
if (!noForbiddenChars) {
Expand Down

0 comments on commit c12d64c

Please sign in to comment.