Skip to content

Commit

Permalink
remove safetynet
Browse files Browse the repository at this point in the history
  • Loading branch information
dskvr committed Mar 10, 2024
1 parent a9f59b9 commit 459daf6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +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) {
console.log(processedEvent.dTag, processedEvent.tags)
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 All @@ -141,7 +141,7 @@
authors: [MONITOR],
},
{ since },
{ skipVerification: true, sort: true },
{ skipVerification: true },
);
for await (const ev of iter) {
on_event_handler(ev);
Expand Down

0 comments on commit 459daf6

Please sign in to comment.