fix unique key for auth

This commit is contained in:
yggverse 2024-11-20 09:54:01 +02:00
parent 59e9739142
commit cadefe3f1d
4 changed files with 4 additions and 8 deletions

View file

@ -34,7 +34,7 @@ impl Gemini {
// Init components
let auth = match Auth::new(connection.clone()) {
Ok(auth) => Rc::new(auth),
Err(reason) => return Err(Error::AuthInit(reason)), // @TODO
Err(reason) => return Err(Error::AuthInit(reason)),
};
let database = Rc::new(Database::new(connection, profile_identity_id.clone()));
let memory = Rc::new(Memory::new());