mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
Fix typo in comment (#4154)
This commit is contained in:
parent
a3386e3e55
commit
358af5fea1
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ exports.expressCreateServer = function (hook_name, args, cb) {
|
||||||
var filePath = path.join(settings.root, "src", "static", "skins", settings.skinName, "robots.txt");
|
var filePath = path.join(settings.root, "src", "static", "skins", settings.skinName, "robots.txt");
|
||||||
res.sendFile(filePath, function(err)
|
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)
|
if(err)
|
||||||
{
|
{
|
||||||
filePath = path.join(settings.root, "src", "static", "robots.txt");
|
filePath = path.join(settings.root, "src", "static", "robots.txt");
|
||||||
|
|
Loading…
Reference in a new issue