This commit is contained in:
2026-08-13 10:15:23 +07:00
parent 650afad6ba
commit 9b1dd526a5
6 changed files with 509 additions and 156 deletions
+2
View File
@@ -135,6 +135,7 @@ impl RepoStore {
})
});
self.tasks.retain(|task| !task.is_ready());
self.tasks.push(task);
}
@@ -201,6 +202,7 @@ impl RepoStore {
))
});
self.tasks.retain(|task| !task.is_ready());
self.tasks.push(cx.spawn(async move |this, cx| {
let (announcement, state, issues, patches, pull_requests, statuses) = match work.await {
Ok(data) => data,