Skip to content

Commit

Permalink
Revert "use page timestamp in event deduping"
Browse files Browse the repository at this point in the history
This reverts commit c0657fa.
  • Loading branch information
andrewjschuang committed Sep 23, 2024
1 parent c0657fa commit 9e1e3a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/notion/sources/updated-page/updated-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default {
generateMeta(obj, summary) {
const { id } = obj;
const title = this.notion.extractPageTitle(obj);
const ts = Date.parse(obj.last_edited_time);
const ts = Date.now();
return {
id: `${id}-${ts}`,
summary: `${summary}: ${title} - ${id}`,
Expand Down

0 comments on commit 9e1e3a9

Please sign in to comment.