diff --git a/scrounger.html b/scrounger.html index e2ed016..d182df4 100644 --- a/scrounger.html +++ b/scrounger.html @@ -149,6 +149,10 @@

Step 2: Extract URLs / Save Session Links

tabs = winds[i].tabs; for (j=0; j < tabs.length; j++) { //console.log('Window '+ (i+1) + ' Tab ' + (j+1)); + // Empty tabs (i.e., with no entries) are skipped + if(tabs[j].entries.length === 0) { + continue; + } if (txtPrivate.length == 0 && tabs[j].isPrivate) txtPrivate = ' (Private)'; else { if (tabs[j].hasOwnProperty('userContextId') && tabs[j].userContextId != 0) { @@ -1021,4 +1025,4 @@

Step 2: Extract URLs / Save Session Links

- \ No newline at end of file +