Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmagoo committed Mar 31, 2024
1 parent f883272 commit f64074d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/ReaderView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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...")
}
Expand Down
3 changes: 0 additions & 3 deletions src/nostr/NostrService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(':');
Expand Down

0 comments on commit f64074d

Please sign in to comment.