Fixes #645: Locale files could not be found.
authorMathieu Lutfy <mathieu@bidon.ca>
Mon, 5 Jan 2015 13:28:01 +0000 (08:28 -0500)
committerMathieu Lutfy <mathieu@bidon.ca>
Mon, 5 Jan 2015 13:28:01 +0000 (08:28 -0500)
server/httphandler.js

index 4c74021848a2a0a4392a772a0b9cdc4036234b8c..f0e7e10405503a567b3efc900edf85572aa3aab9 100644 (file)
@@ -89,7 +89,7 @@ HttpHandler.prototype.serve = function (request, response) {
 var cached_available_locales = [];
 
 // Get a list of the available translations we have
-fs.readdir('client/assets/locales', function (err, files) {
+fs.readdir('../client/assets/locales', function (err, files) {
     if (err) {
         if (err.code === 'ENOENT') {
             winston.error('No locale files could be found at ' + err.path);