fix: don't clone at the end of select_buffer

This commit is contained in:
əlemi 2024-08-15 03:42:48 +02:00
parent 889f745dd4
commit f1b8d83bac
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -43,7 +43,7 @@ pub async fn select_buffer(
for t in tasks {
t.abort();
}
return Ok(x.clone());
return Ok(x);
},
}
}