Allow dash in filenames

pull/79/head
Piero Toffanin 2019-04-10 11:13:47 -04:00
rodzic 7f8802e448
commit d2cc745e30
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -16,7 +16,7 @@ module.exports = {
},
sanitize: function(filePath){
filePath = filePath.replace(/[^\w.]/g, "_");
filePath = filePath.replace(/[^\w.-]/g, "_");
return filePath;
}
};