Skip to content

Commit

Permalink
add debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
dskvr committed Mar 10, 2024
1 parent 9167f3a commit 75494d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@
const on_event_handler = (event) => {
if (initialSyncComplete && event.created_at < since) return;
const processedEvent = processEvent(event);
if(processedEvent.tags.filter(tag => tag[0] === 'rtt').length === 0) return
if(processedEvent.tags.filter(tag => tag[0] === 'rtt').length === 0) {
console.log(processedEvent.dTag, processedEvent.tags)
return
}
since = event.created_at;
if (!initialSyncComplete)
updateEvents(processedEvent);
Expand Down

0 comments on commit 75494d5

Please sign in to comment.