Skip to content

Commit

Permalink
Merge pull request #144 from sunchuanleihit/master
Browse files Browse the repository at this point in the history
bugfix decode-buffer return DataType.Data
  • Loading branch information
hufeng committed Oct 21, 2019
2 parents 551d9ad + 12dc8b1 commit 0a3e0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dubbo/src/decode-buffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ export default class DecodeBuffer
this._buffer = this._buffer.slice(HEADER_LENGTH + bodyLength);
bufferLength = this._buffer.length;
this._subscriber(dataBuffer);
return DataType.Data;
}
}
return DataType.Data;
}

clearBuffer() {
Expand Down

0 comments on commit 0a3e0f0

Please sign in to comment.