We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1622678 commit 3f6a71aCopy full SHA for 3f6a71a
1 file changed
lib/input-handler.ts
@@ -782,8 +782,7 @@ export class InputHandler {
782
}
783
const now = this.getNow();
784
const isDuplicate =
785
- now - this.lastPasteTime < InputHandler.BEFORE_INPUT_IGNORE_MS &&
786
- this.lastPasteData === data;
+ now - this.lastPasteTime < InputHandler.BEFORE_INPUT_IGNORE_MS && this.lastPasteData === data;
787
if (isDuplicate) {
788
this.lastPasteData = null;
789
this.lastPasteSource = null;
0 commit comments