Don't send empty body on authentication

This commit is contained in:
Andre Medeiros 2018-10-09 16:39:34 -04:00 committed by Pascal Precht
parent 53bc4d945a
commit e229688508
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class Authenticator {
this.logger.warn(__('- Referer: %s', req.headers.referer));
return res.send(ERROR_OBJ);
}
res.send();
res.send({});
}
);