fix issue with newline in APIKEY.txt when checking api key
This commit is contained in:
parent
55a2f46ca9
commit
90e9d552f0
@ -70,7 +70,7 @@ var functions = {
|
||||
exports.handle = function(functionName, fields, req, res)
|
||||
{
|
||||
//check the api key!
|
||||
if(fields["apikey"] != apikey)
|
||||
if(fields["apikey"] != apikey.trim())
|
||||
{
|
||||
res.send({code: 4, message: "no or wrong API Key", data: null});
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user