mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 17:45:28 +00:00
replace clone with dereference
This commit is contained in:
parent
9f23e9e51d
commit
af3d8c620b
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ impl Drop {
|
||||||
let gobject = gobject.clone();
|
let gobject = gobject.clone();
|
||||||
let list = list.clone();
|
let list = list.clone();
|
||||||
let profile = profile.clone();
|
let profile = profile.clone();
|
||||||
let profile_identity_gemini_id = profile_identity_gemini_id.clone();
|
let profile_identity_gemini_id = *profile_identity_gemini_id;
|
||||||
move |_, _| {
|
move |_, _| {
|
||||||
match profile.identity.gemini.delete(profile_identity_gemini_id) {
|
match profile.identity.gemini.delete(profile_identity_gemini_id) {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue