Skip to content

Commit

Permalink
Fix illegal character replacer
Browse files Browse the repository at this point in the history
  • Loading branch information
chhoumann authored Jan 23, 2022
1 parent 9ca4782 commit 3bec61e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Examples/Attachments/movies.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function linkifyList(list) {
}

function replaceIllegalFileNameCharactersInString(string) {
return string.replace(/[\\,#%&\{\}\/*<>$\'\":@]*/g, "");
return string.replace(/[\\,#%&\{\}\/*<>?$\'\":@]*/g, "");
}

async function apiGet(url, data) {
Expand Down

0 comments on commit 3bec61e

Please sign in to comment.