瀏覽代碼

Fix on token check

kanadeko 8 年之前
父節點
當前提交
04946126c9
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      routes/api.js

+ 1 - 3
routes/api.js

@@ -4,9 +4,7 @@ const uploadController = require('../controllers/uploadController')
 const galleryController = require('../controllers/galleryController')
 
 routes.get ('/check', (req, res, next) => {
-	if(config.TOKEN === true)
-		return res.json({token: false})
-	return res.json({token: true})
+	return res.json({token: config.TOKEN})
 })
 
 routes.get('/info', (req, res, next) => {