summaryrefslogtreecommitdiff
path: root/lib/response.js
diff options
context:
space:
mode:
authorJannik Lorenz2016-04-23 14:15:24 +0200
committerJannik Lorenz2016-04-23 14:15:24 +0200
commit404e44649f4fe6ee8d0ea649cf9d157c229ab52c (patch)
treee3b9e9919fa3a788d5465dfc28613eb9afdc0776 /lib/response.js
parentd7648e9ceaedf425d344292c77692ad67993a99f (diff)
Fix error page (missing googleDrive config)
Diffstat (limited to 'lib/response.js')
-rw-r--r--lib/response.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/response.js b/lib/response.js
index 043fdd8c..9d75561a 100644
--- a/lib/response.js
+++ b/lib/response.js
@@ -72,7 +72,8 @@ function responseError(res, code, detail, msg) {
code: code,
detail: detail,
msg: msg,
- useCDN: config.usecdn
+ useCDN: config.usecdn,
+ googleDrive: config.googleDrive,
});
res.write(content);
res.end();