wkallhof/Hazel

Illegal Characters

Opened this issue · 0 comments

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);
		}
	});