Export: Remove " as one of the allowed characters in filenames

Turns out that it's not allowed on windows.

FREEBIE
pull/749/head
Scott Nonnenberg 8 years ago
parent a01588f55e
commit 94b63c39fd
No known key found for this signature in database
GPG Key ID: A4931C09644C654B

@ -310,7 +310,7 @@
}
function sanitizeFileName(filename) {
return filename.toString().replace(/[^a-z0-9.,+()'"#\- ]/gi, '_');
return filename.toString().replace(/[^a-z0-9.,+()'#\- ]/gi, '_');
}
function exportConversation(idb_db, name, conversation, dir) {

Loading…
Cancel
Save