Fix transaction attempt on non-recognised comments
This commit is contained in:
parent
5e08f347e0
commit
c88713159d
4
index.js
4
index.js
|
@ -40,11 +40,13 @@ app.post('/' + address.toString(), jsonParser, function(req, res, next){
|
|||
var issueId = req.body.issue.id;
|
||||
var namePosition = commentBody.search("@" + name);
|
||||
// Store toAddress from commiteth
|
||||
if (namePosition == -1 && req.body.comment.user.login == 'commiteth') { // TODO no existence check
|
||||
if (namePosition == -1 ) {
|
||||
if (req.body.comment.user.login == 'commiteth') { // TODO no existence check
|
||||
issueData[issueId] = {"toAddress": commentBody.substring(commentBody.search("Contract address:") + 18, commentBody.search("Contract address:") + 60)}
|
||||
console.log(issueData);
|
||||
return res.status(204);
|
||||
}
|
||||
}
|
||||
else {
|
||||
var postNameWords = commentBody.substring(namePosition + 1 + name.length + 1).trim().split(' ');
|
||||
var amount = 0;
|
||||
|
|
Loading…
Reference in New Issue