From 27371d3510e2325c8a60926e4eb01ebc63efc03d Mon Sep 17 00:00:00 2001 From: yggverse Date: Thu, 28 Nov 2024 02:20:41 +0200 Subject: [PATCH] disable feature not in use --- src/profile/identity/gemini.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/profile/identity/gemini.rs b/src/profile/identity/gemini.rs index c4627768..7c3b875b 100644 --- a/src/profile/identity/gemini.rs +++ b/src/profile/identity/gemini.rs @@ -117,9 +117,9 @@ impl Gemini { match self.memory.get(auth.profile_identity_gemini_id) { Ok(pem) => { return Some(Identity { - scope: auth.scope, + // scope: auth.scope, pem, - }) + }); } Err(reason) => todo!("{:?}", reason.to_string()), }