From 399022ef869c0a8906407974cac259d59526d88f Mon Sep 17 00:00:00 2001 From: alemi Date: Sat, 22 Jun 2024 03:51:01 +0200 Subject: [PATCH] fix: ughhhhh --- upub/core/src/traits/normalize.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upub/core/src/traits/normalize.rs b/upub/core/src/traits/normalize.rs index 1fc9edd..7869da0 100644 --- a/upub/core/src/traits/normalize.rs +++ b/upub/core/src/traits/normalize.rs @@ -341,7 +341,7 @@ impl AP { pub fn actor_q(actor: &impl apb::Actor, internal: Option) -> Result { let mut m = AP::actor(actor)?.into_active_model(); m = m.reset_all(); - m.public_key = NotSet; + m.private_key = NotSet; match internal { Some(x) => m.internal = Unchanged(x), None => m.internal = NotSet,