From: Mathieu Lutfy Date: Mon, 5 Jan 2015 13:28:01 +0000 (-0500) Subject: Fixes #645: Locale files could not be found. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e54fe284c84b2be84acf43b4306e6018f2fe15af;p=KiwiIRC.git Fixes #645: Locale files could not be found. --- diff --git a/server/httphandler.js b/server/httphandler.js index 4c74021..f0e7e10 100644 --- a/server/httphandler.js +++ b/server/httphandler.js @@ -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);