Skip to content

Commit

Permalink
v3.4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed May 18, 2021
1 parent 1c7a082 commit 03d7be5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bugbattle",
"version": "3.4.12",
"version": "3.4.13",
"main": "build/index.js",
"types": "index.d.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion published/latest/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/ReplayRecorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class ReplayRecorder {
}

isFull() {
if (this.actions && this.actions.length > 5000) {
if (this.actions && this.actions.length > 7000) {
return true;
}
return false;
Expand Down

0 comments on commit 03d7be5

Please sign in to comment.