mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-05-05 12:16:45 +02:00
Merge pull request #220 from alx/apikey-trim
fix issue with newline in APIKEY.txt when checking api key
This commit is contained in:
commit
49e28ddc05
@ -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