From f64074d90e1ed86f4b6981feec81a33e1a9f1ffa Mon Sep 17 00:00:00 2001 From: James McGauran <20632552+jamesmagoo@users.noreply.github.com> Date: Sun, 31 Mar 2024 17:13:26 +0100 Subject: [PATCH] Remove logs --- src/ReaderView.ts | 2 -- src/nostr/NostrService.ts | 3 --- 2 files changed, 5 deletions(-) diff --git a/src/ReaderView.ts b/src/ReaderView.ts index 6fa8acd..2e224ae 100644 --- a/src/ReaderView.ts +++ b/src/ReaderView.ts @@ -49,8 +49,6 @@ export class ReaderView extends ItemView { try { let bookmarks = await this.nostrService.loadUserBookmarks(); - console.log("here", bookmarks); - if (this.nostrService.connectedRelays.length === 0) { new Notice("Re-connect to relays...") } diff --git a/src/nostr/NostrService.ts b/src/nostr/NostrService.ts index 937f178..2e1ffe9 100644 --- a/src/nostr/NostrService.ts +++ b/src/nostr/NostrService.ts @@ -320,14 +320,11 @@ export default class NostrService { try { let res = await this.getUserBookmarkIDs(); if (res.success) { - console.log("These are the ids to query for : ", res.bookmark_event_ids) if (this.pool === undefined || this.poolUrls.length === 0) { this.setConnectionPool(); } if (res.longform_event_ids.length > 0) { for (let atag of res.longform_event_ids) { - console.log(atag); - let author = "" let eTag = "" let parts = atag.split(':');