wkallhof / Hazel

Fast, simple, markdown powered wiki knowledge base for Node.js
http://hazel.wmk.io
GNU General Public License v3.0
118 stars 28 forks source link

Illegal Characters #23

Open D-mata opened 6 years ago

D-mata commented 6 years ago

When uploading files the editor breaks on file names with ")". This maybe the solution.

this.dropzone.on("addedfile", function(file){
        if(file.name.indexOf("(") > 0 || file.name.indexOf(")") > 0){
            alert('File Contains illegal Characters');
            this.removeFile(file);
        }
    });