diff --git a/src/node/hooks/express/specialpages.js b/src/node/hooks/express/specialpages.js index 2ca1384b..b11f77a0 100644 --- a/src/node/hooks/express/specialpages.js +++ b/src/node/hooks/express/specialpages.js @@ -29,7 +29,7 @@ exports.expressCreateServer = function (hook_name, args, cb) { var filePath = path.join(settings.root, "src", "static", "skins", settings.skinName, "robots.txt"); res.sendFile(filePath, function(err) { - //there is no custom favicon, send the default robots.txt which dissallows all + //there is no custom robots.txt, send the default robots.txt which dissallows all if(err) { filePath = path.join(settings.root, "src", "static", "robots.txt");