소스 검색

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) => {