disable feature not in use

This commit is contained in:
yggverse 2024-11-28 02:20:41 +02:00
parent 10fc840eb9
commit 27371d3510

View File

@ -117,9 +117,9 @@ impl Gemini {
match self.memory.get(auth.profile_identity_gemini_id) { match self.memory.get(auth.profile_identity_gemini_id) {
Ok(pem) => { Ok(pem) => {
return Some(Identity { return Some(Identity {
scope: auth.scope, // scope: auth.scope,
pem, pem,
}) });
} }
Err(reason) => todo!("{:?}", reason.to_string()), Err(reason) => todo!("{:?}", reason.to_string()),
} }