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

Turns out that it's not allowed on windows.

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-08-31 23:25:49 -07:00
parent a01588f55e
commit 94b63c39fd
No known key found for this signature in database
GPG key ID: A4931C09644C654B

View file

@ -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) {