mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
Minor stylistic changes
This commit is contained in:
parent
b3aad5d333
commit
000305472a
2 changed files with 2 additions and 3 deletions
|
|
@ -93,8 +93,7 @@ impl ChannelList {
|
|||
async move {
|
||||
let mut status = rpc.status();
|
||||
loop {
|
||||
let status = status.recv().await.unwrap();
|
||||
match status {
|
||||
match status.recv().await.unwrap() {
|
||||
rpc::Status::Connected { .. } => {
|
||||
let response = rpc
|
||||
.request(proto::GetChannels {})
|
||||
|
|
|
|||
|
|
@ -1582,7 +1582,7 @@ impl File {
|
|||
.await
|
||||
{
|
||||
log::error!("error closing remote buffer: {}", error);
|
||||
};
|
||||
}
|
||||
})
|
||||
.detach();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue