From 94b63c39fdb099d54b58d10b1cd68b31b78f47b4 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 31 Aug 2017 23:25:49 -0700 Subject: [PATCH] Export: Remove " as one of the allowed characters in filenames Turns out that it's not allowed on windows. FREEBIE --- js/backup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/backup.js b/js/backup.js index a400b5078..4e70b3c83 100644 --- a/js/backup.js +++ b/js/backup.js @@ -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) {