summaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authorWu Cheng-Han2018-01-19 00:25:08 +0800
committerWu Cheng-Han2018-01-19 00:25:08 +0800
commit608008753f3631f473921f0940124f99be13b306 (patch)
treefccb2f549b2b83aca1146b35196baf10eb9ffd66 /app.js
parent11a5dd0eb42f5c3da81e07bcf33779bd29063f99 (diff)
Fix not passing app key correctly in dropbox config
Diffstat (limited to 'app.js')
-rw-r--r--app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.js b/app.js
index c3f1fe8e..37e772bc 100644
--- a/app.js
+++ b/app.js
@@ -34,7 +34,7 @@ var data = {
version: config.version,
GOOGLE_API_KEY: config.google.clientSecret,
GOOGLE_CLIENT_ID: config.google.clientID,
- DROPBOX_APP_KEY: config.dropbox.clientSecret
+ DROPBOX_APP_KEY: config.dropbox.appKey
}
ejs.renderFile(constpath, data, {}, function (err, str) {