Fix typo in `apicalls.js` which prevents from importing `isValidJSONPName`.

This commit is contained in:
Olivier Tétard 2018-04-07 16:07:38 +02:00 committed by muxator
parent 1fdb01fd75
commit 5b1e1f0c35
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ var apiLogger = log4js.getLogger("API");
var clientLogger = log4js.getLogger("client");
var formidable = require('formidable');
var apiHandler = require('../../handler/APIHandler');
var isValidJSONPName = require('./isValidJsonPName');
var isValidJSONPName = require('./isValidJSONPName');
//This is for making an api call, collecting all post information and passing it to the apiHandler
var apiCaller = function(req, res, fields) {