removed .gitignore from list of sound files

v1.18.x
Julian Lam 9 years ago
parent 5f7cc00b44
commit 7bc9e4439a

@ -38,6 +38,11 @@ module.exports = function(Meta) {
], function(err, files) {
var localList = {};
// Filter out hidden files
files = files.filter(function(filename) {
return !filename.startsWith('.');
});
if (err) {
winston.error('Could not get local sound files:' + err.message);
console.log(err.stack);

Loading…
Cancel
Save