Skip to content

Commit 4c43302

Browse files
Merge pull request #30 from deep-compute/bugfix-fix-empty-condition
ref #29, fixed condition
2 parents f1ff143 + 328a9c7 commit 4c43302

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ var jsLogger = /*#__PURE__*/function () {
243243
pending_logs = this.logs;
244244
}
245245

246-
if (pending_logs.length === 0) {
246+
if (!pending_logs || pending_logs === 0) {
247247
this.isAjaxCompleted = true;
248248
this.endCheck();
249249
return;

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class jsLogger {
209209
pending_logs = this.logs;
210210
}
211211

212-
if (pending_logs.length === 0) {
212+
if (!pending_logs || pending_logs === 0) {
213213
this.isAjaxCompleted = true;
214214
this.endCheck();
215215
return;

0 commit comments

Comments
 (0)