Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 54ac932

Browse files
committed
[DEV] Fix shape recognize index in continue recognition
1 parent a8ff5f2 commit 54ac932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inkPaper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@
683683
this.getHmacKey()
684684
).then(
685685
function (data) {
686-
this._lastSentComponentIndex = components.length;
686+
this._lastSentComponentIndex = this._lastSentComponentIndex + components.length;
687687
this._renderResult(data);
688688
}.bind(this),
689689
function (error) {

0 commit comments

Comments
 (0)