From 9a00d130b05d1e8e762c1e5df12c709c5c38890c Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 1 Nov 2023 00:00:00 +0000 Subject: build(deps) update nostr nostr-sdk fix breaking changes --- src/key_handling/users.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/key_handling/users.rs') diff --git a/src/key_handling/users.rs b/src/key_handling/users.rs index a486296..75a0a00 100644 --- a/src/key_handling/users.rs +++ b/src/key_handling/users.rs @@ -190,11 +190,11 @@ impl UserManagement for UserManager { relays_to_search, vec![ nostr::Filter::default() - .author(public_key.to_string()) + .author(*public_key) .since(nostr::Timestamp::from(user_ref.metadata.created_at + 1)) .kind(Kind::Metadata), nostr::Filter::default() - .author(public_key.to_string()) + .author(*public_key) .since(nostr::Timestamp::from(user_ref.relays.created_at + 1)) .kind(Kind::RelayList), ], -- cgit v1.2.3