diff options
Diffstat (limited to 'src/repo_ref.rs')
| -rw-r--r-- | src/repo_ref.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/repo_ref.rs b/src/repo_ref.rs index 0a14005..2dab79c 100644 --- a/src/repo_ref.rs +++ b/src/repo_ref.rs | |||
| @@ -200,8 +200,9 @@ pub async fn fetch( | |||
| 200 | nostr::Filter::default().kind(nostr::Kind::Custom(REPO_REF_KIND)); | 200 | nostr::Filter::default().kind(nostr::Kind::Custom(REPO_REF_KIND)); |
| 201 | match nip19 { | 201 | match nip19 { |
| 202 | Nip19::Coordinate(c) => { | 202 | Nip19::Coordinate(c) => { |
| 203 | repo_event_filter = | 203 | repo_event_filter = repo_event_filter |
| 204 | repo_event_filter.identifier(c.identifier).author(c.pubkey); | 204 | .identifier(c.identifier) |
| 205 | .author(c.public_key); | ||
| 205 | for r in c.relays { | 206 | for r in c.relays { |
| 206 | relays.push(r); | 207 | relays.push(r); |
| 207 | } | 208 | } |