Skip to content

Commit

Permalink
missing semicolon added
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Bartovský committed Jun 17, 2015
1 parent 5cf9595 commit 34f6efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/transport/binary/protocol19/operation.js
Expand Up @@ -822,7 +822,7 @@ Operation.prototype.parseError = function (buffer, offset, context, fieldName, r
if (data.hasMore) {
prev = new errors.Request();
prev.type = data.type;
prev.message = data.message
prev.message = data.message;
err.previous.push(prev);
this.stack.pop();
this.stack.push(prev);
Expand Down
2 changes: 1 addition & 1 deletion lib/transport/binary/protocol26/operation.js
Expand Up @@ -822,7 +822,7 @@ Operation.prototype.parseError = function (buffer, offset, context, fieldName, r
if (data.hasMore) {
prev = new errors.Request();
prev.type = data.type;
prev.message = data.message
prev.message = data.message;
err.previous.push(prev);
this.stack.pop();
this.stack.push(prev);
Expand Down

0 comments on commit 34f6efc

Please sign in to comment.