Comparing version 0.0.13 to 0.0.14
@@ -341,3 +341,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
} | ||
else if (tabInactivity > options.staleThreshold && !tab.staleReported) { | ||
else if (options.staleThreshold && tabInactivity > options.staleThreshold && !tab.staleReported) { | ||
staleTabs.push(tab); | ||
@@ -344,0 +344,0 @@ } |
@@ -56,3 +56,3 @@ export type CrashDetectionOptions<CustomStateReport extends BaseStateReport> = { | ||
*/ | ||
staleThreshold: number; | ||
staleThreshold?: number; | ||
/** | ||
@@ -59,0 +59,0 @@ * How often detection logic will be triggered |
{ | ||
"name": "crashme", | ||
"version": "0.0.13", | ||
"version": "0.0.14", | ||
"main": "dist/lib.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/index.d.ts", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
78819