Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/preload/coreDataGrab.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
const objectKeys = Object.keys(obj);
for (let i = 0; i < objectKeys.length; i++) {
const key = objectKeys[i];
if (key === "return") continue; // the "return" key appears to be a reference to a parent element and, since this is recursive, it can mean "analyzing" an element's siblings, which we don't want (because it can lead to one ad's ad id being attached to a sibling ad.)
const item = obj[key];
if (isEmpty(item)) continue;
if (item instanceof Date) continue;
Expand Down