From 60ee97eee20a13eeda27f978b1126e6b40af7cfc Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 13 Jun 2026 16:02:47 -0400 Subject: [PATCH] Changing type --- src/contact/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/contact/mod.rs b/src/contact/mod.rs index aea8693..6c4f82c 100644 --- a/src/contact/mod.rs +++ b/src/contact/mod.rs @@ -15,6 +15,5 @@ pub struct Contact { pub nickname: Option, pub phone_number: String, // empty - #[serde(skip_serializing_if = "crate::init::is_uuid_nil")] - pub user_id: Option, + pub user_id: uuid::Uuid, }